2013-03-07 90 views
0

我正在寫一個簡單的程序,以更好地理解fork(),wait()和execvp()。我的問題是,我運行該程序後,控制不會傳回到shell,我不知道爲什麼。我想要的是能夠在代碼完成後向shell輸入另一個命令。我看了一下this,但我認爲這不適用於我的情況。我基本上只是從here找到的複製代碼。fork()後失去控制

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

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; 
} 

回答

2

此行

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

不正確

您需要

wait(&status); 

或者使用waitpid - 見here

+0

不錯的,它的工作。爲什麼我不需要循環?是因爲我只有一個孩子的過程?我在看這個[http://stackoverflow.com/questions/2708477/fork-and-wait-with-two-child-processes]這就是爲什麼我很困惑 – Daniel 2013-03-07 03:25:57

+0

就像是一個父母它是一件容易得多一個孩子要照顧。如果你有兩個,你需要一個循環(眼睛在你的腦後)。 – 2013-03-07 03:29:50