流程在C中的父流程中挂起

时间:2017-02-15 14:21:30

标签: c bash output fork parents

我有一个似乎挂在父进程中的程序。它是一个模拟bash程序,接受像bash这样的命令,然后操作它们。代码如下。 (注意这是简化的代码,没有错误检查,所以它更容易阅读。假设它全部正确嵌套在main函数中)

#define MAX_LINE 80

char *args[MAX_LINE/2 + 1];
while(should_run){
    char *inputLine = malloc(MAX_LINE);
    runConcurrently = 0; /*Resets the run in background to be line specific */

    fprintf(stdout, "osh> "); /*Command prompt austhetic */
    fflush(stdout);

   /*User Input */
   fgets(inputLine, MAX_LINE, stdin); 

   /*Reads into Args array */
   char *token = strtok(inputLine, " \n");
    int spot = 0;
    while (token){
        args[spot] = token;
        token = strtok(NULL, " \n");
        spot++;
    }
    args[spot] = NULL;

    /* checks for & and changes flag */   
    if (strcmp(args[spot-1], "&") == 0){
            runConcurrently = 1;
            args[spot-1] = NULL;
    }


    /* Child-Parent Fork Process */
    pid_t pid; 
    pid = fork(); /*Creates the fork */
    if (pid == 0){
        int run = execvp(args[0], args);
        if (run < 0){
            fprintf(stdout, "Commands Failed, check syntax!\n");
            exit(1);
        }
    }
    else if (pid > 0) {
        if (!runConcurrently){
            wait(NULL);
        }
    }
    else {
        fprintf(stderr, "Fork Failed \n");
        return 1;
    }
}

这里的问题与我使用'&amp;'时有关并激活并发运行标志。这使得父母不再需要等待,但是当我这样做时,我失去了一些功能。

预期产出:

osh> ls-a &
//Outputs a list of all in current directory
osh> 

所以我希望它能够完整地运行它们,但是将终端的控制权交还给我。但相反,我得到了这个。

实际结果:

osh> ls -a &
//Outputs a list of all in current directory
     <---- Starts a new line without the osh>. And stays like this indefinitely

如果我在这个空白区域输入内容,结果是:

osh> ls -a &
//Outputs a list of all in current directory
ls -a 
//Outputs a list of all in current directory
osh> osh> //I get two osh>'s this time. 

这是我第一次使用split进程和fork()。我在这里错过了什么吗?当我同时运行它时,我应该选择进程还是类似的东西?欢迎任何帮助,谢谢!

1 个答案:

答案 0 :(得分:3)

您的代码实际上运行正常。唯一的问题是,你过快地吐出提示&#34;,并且在命令输出之前出现新提示。在这里查看测试输出:

osh> ls -al &
osh> total 1944    --- LOOK HERE
drwxrwxrwt 15 root root       4096 Feb 15 14:34 .
drwxr-xr-x 24 root root       4096 Feb  3 02:13 ..
drwx------  2 test test       4096 Feb 15 09:30 .com.google.Chrome.5raKDW
drwx------  2 test test       4096 Feb 15 13:35 .com.google.Chrome.ueibHT
drwx------  2 test test       4096 Feb 14 12:15 .com.google.Chrome.ypZmNA

请参阅&#34;在此处查看&#34;线。新的提示符存在,但稍后会出现ls命令输出。即使在命令输出之前显示提示,您的应用程序也会响应新命令。您可以使用不产生任何输出的命令来验证所有这些,例如

osh> sleep 10 &

哈努哈利