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, fork, #group, handle_interrupt, #initialize, #inspect, #join, #key?, #keys, #kill, kill, list, main, #name, #name=, new, pass, #pending_interrupt?, pending_interrupt?, #priority, #priority=, #raise, #run, #safe_level, #set_trace_func, start, #status, stop, #stop?, #terminate, #thread_variable?, #thread_variable_get, #thread_variable_set, #thread_variables, #value, #wakeup
Constructor Details
This class inherits a constructor from Thread
Instance Method Details
#pid ⇒ Object
1076 1077 1078 1079 1080 |
# File 'process.c', line 1076
static VALUE
detach_process_pid(VALUE thread)
{
return rb_thread_local_aref(thread, id_pid);
}
|