When I do ps -ef on my Linux box, I get: UID PID PPID C STIME TTY TIME CMD
Please help me with meaning of C,TIME. is the TIME , the actual cpu time allocated to the process?
|
When I do ps -ef on my Linux box, I get: UID PID PPID C STIME TTY TIME CMD Please help me with meaning of C,TIME. is the TIME , the actual cpu time allocated to the process? |
|||
|
If you run
but that's under the Press
which sounds right. For more details, we search for
And
Cumulative CPU time is the amount of time the processor spent running the process, i.e. actually using CPU cycles, not sleeping, waiting to run, or waiting for I/O. It's determined by summing the
|
||||
|
|
man psand type/ Cwith the spaces around C to search for the answer. – Mikel Apr 10 '12 at 13:58