Project

General

Profile

Bug #6634 » reduced.rb

Reduced testcase - meh. (meh. I don't care), 06/26/2012 01:59 AM

 
#! /usr/bin/env ruby
require 'thread'

mutex = Mutex.new
cond = ConditionVariable.new

thread = Thread.new {
mutex.synchronize {
cond.wait(mutex)
}
}

thread.join
(3-3/6)