fork(*args)
public
Basically the same as Thread::new. However, if class Thread is subclassed, then calling start in that subclass will not invoke
the subclass’s initialize method.
Show source
static VALUE
thread_start(VALUE klass, VALUE args)
{
return thread_create_core(rb_thread_alloc(klass), args, 0);
}