vfork段错误,求高手指点,多谢
[root@localhost file]# cat vfork.c
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(void)
{
pid_t pid;
if((pid = vfork()) < 0)
{
printf("fork error\n");
return 1;
}
else if(pid == 0)
{
sleep(1);
printf("this is child process,ID:%d,PPID:%d\n", getpid(),getppid());
return 0;
}
else
{
printf("this is father process,ID:%d\n", getpid());
return 0;
}
}
[root@localhost file]# gcc vfork.c -o vfork
[root@localhost file]# ./vfork
this is child process,ID:20706,PPID:20705
this is father process,ID:20705
段错误
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本帖最后由 cokeboL 于 2011-06-02 22:55 编辑
vfork的子进程里不要用return或exit,除非你有意安排,它们会对标准I/O进行清理关闭,而且vford是在父进程的地址空间运行,所以是把父进程的标准I/O清理关闭了,那printf之类的写到I/O缓冲的内存已经不再,就挂了。
子进程改用_exit或_Exit就OK了。
刚试了下,exit是可以的,看来linux和unix的实现不一样。