Chinaunix首页 | 论坛 | 博客
  • 博客访问: 192667
  • 博文数量: 29
  • 博客积分: 731
  • 博客等级: 上士
  • 技术积分: 435
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-06 16:18
文章分类

全部博文(29)

文章存档

2012年(29)

分类: Python/Ruby

2012-04-18 19:02:21

example:
 
my $maxchild=10;
 for($i=0;$i<=$maxchild-1;$i++)
 {
   my $child=fork();
    if($child) {   # child >; 0, so we're the parent
        warn "launching child $child\n";
    }else{
        do_child($i);         # child handles  
     exit 0;             # child is done
    }
}
 exit;
 sub do_child
 {
     my $child_number=shift(@_);
    print("child ,$child_number \n");
 }
阅读(1900) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

认真的鱼1232012-04-19 22:05:46

perl多进程(fork)中子进程结束信号的促发的方法为什么不执行?