Project

General

Profile

Bug #15383 » crash.rb

Reproduction script (super small) - mbjs (Markus Schirp), 12/05/2018 01:33 PM

 
MUTEX = Mutex.new

# You may have to up this on your platform
50.times do
Thread.new do
pid = Process.fork { MUTEX.synchronize {} }

MUTEX.synchronize {}

Process.waitpid(pid)
end
end
(2-2/2)