免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2134 | 回复: 3
打印 上一主题 下一主题

懂得进来看下,为什么这个函数会产生段错误呢? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-30 21:07 |只看该作者 |倒序浏览
#include <sched.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

int main()
{
int i=-1;
        i=vfork();
        if(i==0){
                printf("I am a child process, my pid is %d\n",getpid());sleep(3);
        }else if (i>0){
                printf("I am a parent process, my pid is %d\n",getpid());sleep(3);
        }
    return 0;
}


就是这个函数,为什么调用vfork会产生段错误呢?

论坛徽章:
0
2 [报告]
发表于 2009-10-02 10:06 |只看该作者
vfork后, 子进程是不能够从调用vfork的那个函数中返回的.
LZ的例子中, 子进程会从调用vfork的main函数中返回, 这可能把父进程的栈搞坏掉.

有兴趣可以看看这个: http://hi.baidu.com/_kouu/blog/item/3e92640e3b6393e4ab645784.html

论坛徽章:
0
3 [报告]
发表于 2009-10-03 19:46 |只看该作者
The vfork() system call can normally be used just like fork(2).  It does
     not work, however, to return while running in the child's context from
     the procedure that called vfork() since the eventual return from vfork()
     would then return to a no longer existent stack frame.  Be careful, also,
     to call _exit(2) rather than exit(3) if you cannot execve(2), since
     exit(3) will flush and close standard I/O channels, and thereby mess up
     the parent processes standard I/O data structures.  (Even with fork(2) it
     is wrong to call exit(3) since buffered data would then be flushed
     twice.)

一般来说,我们可以像调用fork(2)一样调用 vfork()。但是,如果从调用vfork()的函数中返回,vfork()就不能如你所愿了,这样做,最终vfork()可能返回到已经不存在的栈环境。如果你vfork()后不执行execve(2), 那要注意了,用_exit(2)返回,而不是用exit(3)返回,因为exit(3)会flush和关闭standard I/O,因此会搅乱父进程的standard I/O数据结构。就是利用了fork(2),也不能用exit(3)来返回,因为缓存的数据会被重复flush。

翻译的强差人意。请高手指点。跟人感觉看这些东西要一个字一个字的看,毕竟_exit和_Exit不是一个东东。

论坛徽章:
0
4 [报告]
发表于 2009-10-06 23:35 |只看该作者
vfork保证子进程先运行,在她调用exec或exit之后父进程才可能被调度运行。如果在调用这两个函数之前子进程依赖于父进程的进一步动作,则会导致死锁。

由此可见,这个系统调用是用来启动一个新的应用程序。其次,子进程在vfork()返回后直接运行在父进程的栈空间,并使用父进程的内存和数据。这意味着子进程可能破坏父进程的数据结构或栈,造成失败。

为了避免这些问题,需要确保一旦调用vfork(),子进程就不从当前的栈框架中返回,并且如果子进程改变了父进程的数据结构就不能调用exit函数。子进程还必须避免改变全局数据结构或全局变量中的任何信息,因为这些改变都有可能使父进程不能继续。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP