从execv()中获取返回值

时间:2014-02-21 00:59:50

标签: c exec fork wait

//code for foo (run executable as ./a.out)
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/wait.h>

int main (int argc, char **argv) {
pid_t pid;
pid = fork();
int i = 1;
char *parms[] = {"test2", "5", NULL}; //test executable named test2   
if(pid < 0) {
        fprintf(stderr, "Fork failed");
        return 1;
}
else if(pid == 0) {
        printf("Child pid is %d\n", pid);
        i = execv("test2", parms);  //exec call to test with a param of 5
}
else {
        wait(NULL);
}
printf("I is now %d\n", i); //i is still 1 here, why?
return 0;
}

嘿大家,我正在尝试学习一些关于fork和execv()的调用。我上面的foo.c程序调用了一个名为test.c的文件。我分叉一个孩子并让孩子调用execv,这只会在读入的参数中加上10个。我不知道为什么变量没有改变,在我的foo.c函数的底部。呼叫需要是指针还是返回地址?任何帮助将不胜感激。感谢

test.c的代码(可执行文件名为test2)

#include <stdio.h>

int main(int argc, char ** argv[]) {
        int i = atoi(argv[1]);
        i = i +10;
        printf("I in test is %d\n", i);
        return i;
}

1 个答案:

答案 0 :(得分:5)

您只能在子进程中调用execv()exec()系列函数如果成功运行则永远不会返回。见evec(3)

  

exec()函数仅在发生错误时才返回。返回值为-1errno设置为表示错误。

您在父进程中打印了i的值,它在父进程中从未更改过。


要从子流程中获取退出状态,您可以使用wait()waitpid()

else {
        int waitstatus;
        wait(&waitstatus);
        i = WEXITSTATUS(waitstatus);
}