我拥有这段代码是为了解决我正在开发的另一个大型程序中遇到的问题而开发的。

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <cstring>
#include <cstdlib>
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include <limits.h>
#include <string>
#include <iostream>

using namespace std;
void processLine (char []);
void readLine(char []);

const int LIMIT = 512;
int main(int argc, char *argv[])
{
    char oneLine[LINE_MAX];
    readLine(oneLine);


    return 0;
}
void readLine(char line[])
{
    processLine(line);
    printf("Annoying line\n");
}
void processLine(char line[])
{

    pid_t process;
    int child_status;

    string input;
    cout << "Input: ";
    cin >> input;


        process = fork();
        if(process == 0)
        { // do nothing
        }
        else
        {
                        //parent
                    if(input == "quit")
            {
                printf("Quit command found ! \nExiting ");

                for(int i = 0;i < 3;i++)
                {
                    printf(".");
                    fflush(stdout);
                    sleep(1);

                }

                printf("\n");
                    exit(0);
            }
            else
            {
                wait(&child_status);
            }
        }

}


我的目标很简单,当用户输入quit时。

我只会显示


  找到退出命令
  
  正在退出...


这三个点之间每个都有一秒的延迟。

但是我得到的输出是


  找到退出命令
  
  正在退出。烦人的线..


我不知道这条烦人的线是如何在第一个点之后打印的,即使它是来自调用函数的,而不是轮到要打印到终端了吗?

有任何想法吗。我花了10个小时试图解决这个问题

最佳答案

在子进程中,您的// do nothing掉线并返回到main()并打印该行。 fork()制作两个副本,两个副本都继续执行。通常,孩子会立即调用exec()来运行其他内容(从不返回),但是您没有执行任何此类操作。

10-06 03:43