/* * call-seq: * thr.value => obj * * Waits for <i>thr</i> to complete (via <code>Thread#join</code>) and returns * its value. * * a = Thread.new { 2 + 2 } * a.value #=> 4 */ static VALUE rb_thread_value(thread) VALUE thread; { rb_thread_t th = rb_thread_check(thread); while (!rb_thread_join0(th, DELAY_INFTY)); return th->result; }