免费注册 查看新帖 |

Chinaunix

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

win7下多进程问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-09-20 10:33 |只看该作者 |倒序浏览
在win7下写了个多进程的代码,发现最多只能fork 64个进程,linux下没发现有任何限制,以下是代码
for $i (1..300){
        $pid = fork;
        if($pid == 0){
                print 'pid:'.$$,", the $i process started\n";
                #sleep (3+int(rand(10)));
                exit 0;
        }
}
print "waitting --------\n";
print "process$p has exist\n" while(($p=wait)!=-1)

在win7下运行,发现只生成了64个子进程,这个大家有没碰过,是啥原因呢,windows系统限制么

论坛徽章:
0
2 [报告]
发表于 2012-09-20 11:22 |只看该作者
本帖最后由 sjdy521 于 2012-09-20 11:37 编辑
Resource limits

In the eyes of the operating system, pseudo-processes created via the fork() emulation are simply threads in the same process. This means that any process-level limits imposed by the operating system apply to all pseudo-processes taken together. This includes any limits imposed by the operating system on the number of open file, directory and socket handles, limits on disk space usage, limits on memory size, limits on CPU utilization etc.


建议去msdn等查一下相关的资料,不是很清楚各个系统的限制是怎么样的,另外,perl在windows上的fork也是伪的,不知道是不是perl自身做了限制

论坛徽章:
0
3 [报告]
发表于 2012-09-21 15:48 |只看该作者
sjdy521 发表于 2012-09-20 11:22
建议去msdn等查一下相关的资料,不是很清楚各个系统的限制是怎么样的,另外,perl在windows上的fork也是 ...

没耐心那么深入看了,哈哈

论坛徽章:
2
CU大牛徽章
日期:2013-04-17 11:46:28CU大牛徽章
日期:2013-04-17 11:46:39
4 [报告]
发表于 2012-09-21 20:19 |只看该作者
windows 自己的限制
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP