Method: Process#ppid
- Defined in:
- process.c
#ppid ⇒ Fixnum (private)
241 242 243 244 245 246 |
# File 'process.c', line 241
static VALUE
get_ppid(void)
{
rb_secure(2);
return PIDT2NUM(getppid());
}
|
241 242 243 244 245 246 |
# File 'process.c', line 241
static VALUE
get_ppid(void)
{
rb_secure(2);
return PIDT2NUM(getppid());
}
|