Class: Process::Waiter
Instance Method Summary collapse
Methods inherited from Thread
DEBUG, DEBUG=, #[], #[]=, #abort_on_exception, abort_on_exception, abort_on_exception=, #abort_on_exception=, #add_trace_func, #alive?, #backtrace, #backtrace_locations, current, exit, #exit, #fetch, fork, #group, handle_interrupt, #initialize, #join, #key?, #keys, #kill, kill, list, main, #name, #name=, new, pass, #pending_interrupt?, pending_interrupt?, #priority, #priority=, #raise, report_on_exception, #report_on_exception, report_on_exception=, #report_on_exception=, #run, #safe_level, #set_trace_func, start, #status, stop, #stop?, #terminate, #thread_variable?, #thread_variable_get, #thread_variable_set, #thread_variables, #to_s, #value, #wakeup
Constructor Details
This class inherits a constructor from Thread
Instance Method Details
#pid ⇒ Object
1426 1427 1428 1429 1430 |
# File 'process.c', line 1426
static VALUE
detach_process_pid(VALUE thread)
{
return rb_thread_local_aref(thread, id_pid);
}
|