gpt4 book ai didi

c - 为什么 fork() 返回值是 -1,为什么 wait() 退出状态不是 0?

转载 作者:太空宇宙 更新时间:2023-11-04 05:55:32 27 4
gpt4 key购买 nike

在程序中:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main()
{
int pid;
int status;

pid = fork();

if (pid < 0)
{
return -1;
}
else if (pid == 0)
{
printf("I am the child\n");
exit(0);
}
else if (pid > 0)
{
pid = wait(&status);
printf("I am the parent\n");
printf("My pid is %i\nMy childs's pid is %i\nMy childs's exit status is %i\n", getpid(), pid, status);

}

}

这个程序返回:

I am the child
I am the parent
My pid is 16269
My childs's pid is -1
My childs's exit status is 32767

1)为什么子进程的pid = -1 而不是实际的子进程号?

2) 为什么 child 的退出状态 != 0,如我所愿?

最佳答案

关于子进程id,是因为你重新分配了pid变量,和 wait返回 -1出现错误。

关于退出状态,自wait起无效失败的。但除此之外,只有最低八位包含实际状态。首先你需要确保 wait调用实际上成功了,那么你需要用WIFEXITED检查进程是否正常退出宏,然后使用 WEXITSTATUS 获取实际退出状态宏。

我建议您阅读 wait 的引用资料和 <sys/wait.h> 头文件。

关于c - 为什么 fork() 返回值是 -1,为什么 wait() 退出状态不是 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28257681/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com