我在使用execvp和fork时遇到问题。当我运行代码时,即使文件已创建,exec也无法工作。它仅返回“错误地址”错误。另外,当我运行printf(“ in child”)时,它不会出现。我的代码如何在不打印“ in the child”的情况下进入execvp?
pid = fork();
switch(pid) {
case -1:
fprintf(stderr,"ERROR WITH FORK\n");
exit(1);
break;
case 0:
printf("in the child");
fd = open(filename,O_CREAT | O_APPEND,0777);
if(dup2(fd,1) < 0)
{
fprintf(stderr,"dup error: %s",strerror(errno));
}
if(execvp(command,args) == -1) //is null terminated
{
fprintf(stderr,"exec error %s\n",strerror(errno));
}
break;
default:
wait(NULL);
break;
最佳答案
指针数组(execvp()
中的第二个参数)必须由NULL
指针终止。在0
的末尾附加NULL
或args
。
关于c - 在C中使用fork,execvp出错?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19482482/