Skip to content

Instantly share code, notes, and snippets.

@zlx
Created June 24, 2014 05:21
Show Gist options
  • Save zlx/5434fbf0dca1c86d61fa to your computer and use it in GitHub Desktop.
Save zlx/5434fbf0dca1c86d61fa to your computer and use it in GitHub Desktop.
fork do
5.times do
sleep 1
puts "I am an orphan!"
end
end
Process.wait
abort "Parent process died..."
@zlx
Copy link
Author

zlx commented Jun 24, 2014

输出结果:

I am an orphan!
I am an orphan!
I am an orphan!
I am an orphan!
I am an orphan!
Parent process died...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment