wakeup()
public
Marks a given thread as eligible for scheduling, however it may still
remain blocked on I/O.
Note: This does not invoke the scheduler, see #run for more information.
c = Thread.new { Thread.stop; puts "hey!" }
sleep 0.1 while c.status!='sleep'
c.wakeup
c.join
Show source
VALUE
rb_thread_wakeup(VALUE thread)
{
if (!RTEST(rb_thread_wakeup_alive(thread))) {
rb_raise(rb_eThreadError, "killed thread");
}
return thread;
}