当我产生进程时出现僵尸进程

时间:2010-03-10 23:29:39

标签: ruby linux process zombie-process

我有一些代码,我生成了子进程,以提高效率。但是,它们似乎会创建各种阻止套接字并关闭网站的僵尸进程。

spawn(:method => :thread) do
   if @login_user.suggested_group_info.new_record?
       xxx
   end
end

1)为什么这会创建僵尸进程? 2)我怎样才能编写代码,以确保在成为僵尸之前杀死进程?

2 个答案:

答案 0 :(得分:4)

您必须保存生成进程的PID,并在它死后执行waitpid(2)系统调用。 (我不知道Ruby是如何做到的。)

答案 1 :(得分:2)

您还可以捕获子关闭,这将清除僵尸进程

trap("CLD") {
  pid = Process.wait
  puts "Child pid #{pid}: terminated"
}