免费注册 查看新帖 |

Chinaunix

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

APUE中的内容,有不解的地方,请教子进程会继承父进程的锁吗? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-03-08 20:54 |只看该作者 |倒序浏览
我的鸟语水平还有待提高,在APUE中-ver2中看到下面的话,有些不解

Page 436
12.9 Threads and fork

Inside the child process,only one thread exist.It is made from a copy of the thread that called fork in the parent.If the threads in the parent process hold any locks,the locks will also be held in the child process.The problem is that the child process doesn't contain copies of the threads holding the locks,so there is no way for the child to know which locks are held and need to be unlocked.

红色的部分你做了一种假设,并推出一个结果。
蓝色的部分是对现实情况的描述,
紫色的部分是由蓝色部分推出的一种情况。


如果蓝色的部分是描述的事实,那粉红色的部分的假设有什么作用?

论坛徽章:
0
2 [报告]
发表于 2010-03-08 21:25 |只看该作者
这是一个Thread-fork问题.

我举个例子

典型的例子是malloc,由于各个线程都需要malloc, malloc通常有把锁
如果两个线程AB
lock(&__alloc_lock);
do_malloc();//A在这
unlock(&__alloc_lock);

这个时候如果B线程fork一个,那么这个时候完全把地址空间复制一份,这样__alloc_lock的状态是被锁,B的子进程如果接下来调用malloc(甚至fopen等很多函数),那么显然将死锁
a()
{
    while (1) {
       p = malloc();
       free(p);
   }
}
int main()
{
    new thread a();
    while (1) {
         if (fork() == 0) {
                p = malloc();
                free(p);
                exit(0);
        }
       wait(0);
    }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP