![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| output of command rup | kiranrasane | UNIX for Advanced & Expert Users | 1 | 03-27-2008 07:31 AM |
| ls command output | arsheshadri | AIX | 1 | 08-20-2007 03:23 AM |
| if command not having the right output | filthymonk | Shell Programming and Scripting | 9 | 05-22-2007 10:11 PM |
| Output of ps command | ls1429 | UNIX for Dummies Questions & Answers | 1 | 02-03-2003 07:40 AM |
| Output command | berty007 | Shell Programming and Scripting | 4 | 11-29-2002 02:27 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Output of ps -ef command
Can someone tell me the meaning of the column 'C' contained in the output of the ps -ef command?
UID PID PPID C STIME TTY TIME COMMAND I was once told that if the value was higher then 0 and the process showed to be in a state of sleep when running a top then the command had timed out and can be killed?!! Thanks in advance |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Found this here You should probably visit to see this text in context with the example given....
Quote:
ZB |
|
#3
|
||||
|
||||
|
man says .....
C (-f, l, and -l flags) CPU utilization of process or thread, incremented each time the system clock ticks and the process or thread is found to be running. The value is decayed by the scheduler by dividing it by 2 once per second. For the sched_other policy, CPU utilization is used in determining process scheduling priority. Large values indicate a CPU intensive process and result in lower process priority whereas small values indicate an I/O intensive process and result in a more favorable priority. |
|
#4
|
|||
|
|||
|
Thanks BZ. Am I right in thinking that if the process has 254 in the C column and is in a state of sleep, that it is no longer running but in a continual loop or a process it's relying on has died?
Thanks again |
|
#5
|
||||
|
||||
|
bhargav - out of interest which *nix are you using? The HP-UX 10.20 and SUSE 8.2 man pages have nothing on this....
Cheers ZB |
|
#6
|
||||
|
||||
|
$ uname -a | cut -d" " -f 1,3-
AIX 3 4 000936434C00 |
|
#7
|
||||
|
||||
|
Quote:
|
||||
| Google The UNIX and Linux Forums |