Mega Code Archive

 
Categories / Ruby / Threads
 

Fork with block

fork do      puts "In child, pid = #$$"      exit 99  end  pid = Process.wait  puts "Child terminated, pid = #{pid}, status = #{$?.exitstatus}"