struct Process::Tms
inherits Struct
¶
A struct representing the CPU current times of the process, in fractions of seconds.
- utime: CPU time a process spent in userland.
- stime: CPU time a process spent in the kernel.
- cutime: CPU time a processes terminated children (and their terminated children) spent in the userland.
- cstime: CPU time a processes terminated children (and their terminated children) spent in the kernel.
Class methods¶
Methods¶
#copy_with(utime _utime = @utime, stime _stime = @stime, cutime _cutime = @cutime, cstime _cstime = @cstime)
¶
(utime _utime = @utime, stime _stime = @stime, cutime _cutime = @cutime, cstime _cstime = @cstime)