Module: Process
- Defined in:
- (unknown)
Class Method Summary collapse
Class Method Details
.crusage(*args) ⇒ Object
35 36 37 |
# File 'ext/rusage/rusage.c', line 35
static VALUE crusage_get(int argc, VALUE* argv, VALUE mod){
return do_rusage_get(RUSAGE_CHILDREN);
}
|
.rusage(*args) ⇒ Object
32 33 34 |
# File 'ext/rusage/rusage.c', line 32
static VALUE rusage_get(int argc, VALUE* argv, VALUE mod){
return do_rusage_get(RUSAGE_SELF);
}
|