| 
 | |||
| Previous < | Contents ^ | Next > | |
|  | 
| class Struct::Tms | 
 | 
Time::times.  It holds
  information on process times on those platforms that support it.
  Not all values are valid on all platforms.    
  This structure contains the following instance variables and the
  corresponding accessors:
  |  | ||||||||
| utime | Amount of User CPU time, in seconds | |||||||
| stime | Amount of System CPU time, in seconds | |||||||
| cutime | Completed child processes' User CPU time, in seconds (always 0 on Windows NT) | |||||||
| cstime | Completed child processes' System CPU time, in seconds (always 0 on Windows NT) | |||||||
|  | ||||||||
Struct on page 385 and Time::times
  on page 398.
| t = Time.times | ||
| [ t.utime, t.stime] | » | [0.01, 0.0] | 
| [ t.cutime, t.cstime ] | » | [0.0, 0.0] | 
| Previous < | Contents ^ | Next > |