= private = protected
pass()
Give the thread scheduler a hint to pass execution to another thread. A running thread may or may not switch, it depends on OS and processor.
static VALUE thread_s_pass(VALUE klass) { rb_thread_schedule(); return Qnil; }