Class: CPUTimeTimer
- Inherits:
-
Object
- Object
- CPUTimeTimer
- Defined in:
- ext/cpu_time/cpu_time.c
Class Method Summary collapse
Class Method Details
.cpu_time ⇒ Object
37 38 39 40 41 42 43 |
# File 'ext/cpu_time/cpu_time.c', line 37
static VALUE
rb_cpu_time()
{
double time = cpu_time();
return rb_float_new(time);
}
|