叉后失去控制()(Losing control after fork())

2019-11-01 17:10发布

我正在写一个简单的程序,以便更好地了解叉(),等待()和execvp()。 我的问题是我运行程序后,控制不传递回壳,我不知道为什么。 我要的是能够输入另一个命令到外壳代码完成后。 我看了看这个 ,但我不认为这是适用于我的情况。 我已经基本上只是复制的代码,我从找到这里 。

输入/输出(#是在我输入行的前面,尽管不是输入的一部分):

shell> # gcc test.c -o test
shell> # ./test
input program (ls)
# ls
input arg (.)
# .
test test.c extra.txt
# a;dlghasdf
# go back
# :(

我的代码:

int main(void) {
    //just taking and cleaning input
    printf("input program (ls)\n");
    char inputprogram [5] = {0,0,0,0,0};
    fgets(inputprogram,5,stdin); //read in user command
    int i;
    for(i = 0; i < 5; i++) {
        if(inputprogram [i] == '\n' ){
            inputprogram[i] = 0;
        }
    }

    printf("input arg (.)\n");
    char inputarg [5] = {0,0,0,0,0};
    fgets(inputarg,5,stdin); //read in user command
    for(i = 0; i < 5; i++) {
        if(inputarg [i] == '\n' ){
            inputarg[i] = 0;
        }
    }

    char per []= {inputarg[0], 0};
    char *arg [] = {inputprogram, per , NULL};

    int status = 0;
    pid_t child;

    //the fork(), execvp(), wait()
    //////////////////////////////////
    if ((child = fork()) < 0) {
        /* fork a child process           */
        printf("*** ERROR: forking child process failed\n");
        exit(1);
    } else if(child == 0){
        execvp(inputprogram, arg);
        exit(1);
    } else {
        while(wait(&status != child));
    }

    return EXIT_SUCCESS;
}

Answer 1:

这条线

while(wait(&status != child));

是不正确的

你需要

wait(&status);

或者使用waitpid -参见这里



文章来源: Losing control after fork()
标签: c shell wait