Operating System - HP-UX
1832822 Members
3385 Online
110045 Solutions
New Discussion

Re: process in stopped status

 
Luca Frigatti
Contributor

process in stopped status

Hi Admin!
do you know what mean "stopped" in the process status on a top command ?
479 processes: 440 sleeping, 30 running, 8 stopped

Thanks in advance for your help and your support.

Luca
4 REPLIES 4
harry d brown jr
Honored Contributor

Re: process in stopped status

They are processes that have stopped running and are awaiting to exit, possibly their parent process needs to accept their exit?

With glance what do you see?

live free or die
harry
Live Free or Die
S.K. Chan
Honored Contributor

Re: process in stopped status

You can run the 'ps' comand to find out whoch processes are in "stopped" state.

# ps -efl | more
==> look at the 2nd column "S" (means state), most of the processes would have status S (sleeping) or R (running). Look for T (stopped processes).

Do a man ps for more details of the process state.
Sanjay_6
Honored Contributor

Re: process in stopped status

Steven Gillard_2
Honored Contributor

Re: process in stopped status

Usually a process will go into this state when it tries to read from stdin while in the background. A signal can also be sent to a process to stop it (SIGSTOP, which can be followed by a SIGCONT to start it again).

It simply means that the process will not be scheduled to run at all.

Regards,
Steve