与 Ruby 1.8 和 Windows 分叉
我正在使用 ruby 1.8.7 patchlevel 302,并且我正在 Windows xp 系统上工作。 我必须启动一个需要对用户输入做出反应的外部进程。如果我使用线程,该进程不会做出反应,因此我尝试使用 fork。通过 fork,外部进程会对用户输入做出反应,但它执行的不仅仅是 fork 块。例如,
fork do
puts 'child'
end
puts 'parent'
Process.wait
puts 'done'
在我的机器上产生以下输出:
parent
child
parent
done
done
如您所见,“done”和“parent”被打印两次。我该怎么做才能让子进程只执行它的块而不执行更多块? (由于一些 gem,我无法切换到 Ruby 1.9)
I'm using ruby 1.8.7 patchlevel 302 and I'm working on a Windows xp system.
I have to start an external process that needs to react on user input. The process doesn't react if I use threads, so I tried using fork. With fork the external process reacts on the user input but it executes more than just the fork block. For example
fork do
puts 'child'
end
puts 'parent'
Process.wait
puts 'done'
produces the following output on my machine:
parent
child
parent
done
done
As you can see 'done' and 'parent' is printed twice. What can I do to make the child execute only its block and not more? (I can't switch to Ruby 1.9 because of some gems)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样:
Like that:
我找到了一个临时的办法。当我在子块末尾添加 Process.kill(1, 0) 时,它的工作原理就像它应该的那样。但我认为这不是最好的解决方案。因此,如果有人知道真正的解决方案,我仍然会很高兴。
I found a little makeshift. It works like its supposed to be when I add Process.kill(1, 0) at the end of the child block. But I think it's not the best solution. So I'd still be happy if someone knows a real solution.
我认为在结束 fork 之前你只需要
Process.exit!
。I think you just need
Process.exit!
before you end your fork.