summaryrefslogtreecommitdiff
path: root/code/snippets/zombies_eg.rb
blob: 475c11c15ede53aec19b1e57961b44d923bab9ea (plain)
1
2
3
4
5
6
7
# Create a child process that exits after 1 second.
pid = fork { sleep 1 }
# Print its pid.
puts pid
# Put the parent process to sleep so we can inspect the 
# process status of the child
sleep 5