retrieve process state programatically


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users retrieve process state programatically
# 1  
Old 01-21-2010
Question retrieve process state programatically

Assume I spawn a process on (csh) command line, like

Code:
> du -a / >& /dev/null &

which creates a process with id 1234. Now, I can suspend/resume that process with

Code:
> kill -STOP 1234
> kill -CONT 1234

and can query the process state via 'jobs' or 'ps. How can I though query that state programatically (UNIX/POSIX system, no /proc/ available)?

The only call closest to the problem seems waitpid(), which can use WUNTRACED to get notifications on some signals, including SIGSTOP. That seems to work only for processes spawned within the same application - so I would not be able to write a tool which, for the example above, works like

Code:
> check_proc_state -p 1234
 1234 is Running

Another option is to do something like

Code:
FILE* fd = popen ("ps -ewwo pid=,uid=,state=,command=", "r");

and to grep the output - but ps output is not well standardized (well, it actually is, see ps, but the various implementations do not necessarily adhere to the spec), and also this seems a very cumbersome way to do that. Not to speak of performance...

Any better ideas? The solution ideally should work on MacOS, BSD, Linux, and AIX.

Thanks, Andre.


PS.: yes, I grep'ed the forum: huge amount of related posts, and I may well have missed relevant discussions in the noise. My apologies, and thanks for any pointers...

Last edited by Andre_Merzky; 01-21-2010 at 09:46 AM.. Reason: code tags, please...
# 2  
Old 01-21-2010
Hello Andre,

The two ideas that come to my mind:

1) You create a process responsible for spawing your applications to monitor. That way, you create the parent-child relationship that you need for using waitpaid() with the options WUNTRACED and WCONTINUED.

2) You use the appropriate popen("ps...") code depending on which platform you are running. This can be achieved using old plain #ifdef, or using a strategy pattern.

HTH,
Loïc.
# 3  
Old 01-21-2010
Hi Loic, thanks for your answer!

Quote:
Originally Posted by Loic Domaigne
Hello Andre,

The two ideas that come to my mind:

1) You create a process responsible for spawing your applications to monitor. That way, you create the parent-child relationship that you need for using waitpaid() with the options WUNTRACED and WCONTINUED.
Alas, this is not a viable option in my use case: I have no control over the original parent, nor over spawning process. Well, in those cases where I do have that control, waitpid works nicely of course. The other cases (no control) cause the headache ;-)

Quote:
2) You use the appropriate popen("ps...") code depending on which platform you are running. This can be achieved using old plain #ifdef, or using a strategy pattern.
That is what I do right now, but its ugly, and broken. For example:

Code:
> sleep 1000 &

> ps -ewwo pid=,uid=,state=,command= | grep 1000
16027   501 S    sleep 1000

> fg
sleep 1000
^Z
[1]  + 16027 Suspended                     sleep 1000

> ps -ewwo pid=,uid=,state=,command= | grep 1000
16027   501 S    sleep 1000

So, the process 'sleep' is active in the first case, and suspended in the second. PS reports the same state - I have no means to distinguish. This seems to be valid for all apps which are sleeping or blocking in any way (which are many in our environment, mostly waiting for IO).

FWIW: the above is on MacOS.

Best, Andre
# 4  
Old 01-21-2010
Hi Andre,

Quote:
So, the process 'sleep' is active in the first case, and suspended in the second. PS reports the same state - I have no means to distinguish. This seems to be valid for all apps which are sleeping or blocking in any way (which are many in our environment, mostly waiting for IO).
weird. From my understanding, this should be in state 'T' (other OSes report this). I am afraid that you have to resort a MAC specific way for this problem... And as a corollary, likely ask a MAC specific Forum. I am afraid, I can't help further (I don't have yet a MAC at home yet. This is one of my future plan Smilie )

Cheers,
Loïc.
# 5  
Old 01-21-2010
Quote:
Originally Posted by Loic Domaigne
And as a corollary, likely ask a MAC specific Forum. I am afraid, I can't help further (I don't have yet a MAC at home yet. This is one of my future plan Smilie )

Cheers,
Loïc.
Don't get one - its not worth the trouble. Things one a Mac are always *slightly* different than you would expect... :-P

Thanks anyway,

Andre.
# 6  
Old 01-21-2010
If you are using Mac OS X you can use launchd, and then use launchctl to control it, load it, unload it, etc.
# 7  
Old 01-24-2010
Quote:
Originally Posted by tlarkin
If you are using Mac OS X you can use launchd, and then use launchctl to control it, load it, unload it, etc.
Hi,

your comment finally got me to read the launchd/launchctrl man pages ;-) Interesting, but very much non-portable, and non-API solution to the problem. Also, no suspend/resume AFAICS.

Thanks anyway!

Andre.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

2. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

3. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

4. Shell Programming and Scripting

Problem with a script for checking the state of a process

Hello Everyone, I have a process that should be always running. Unfortunately, this process is getting down almost every 10 minutes. I want to make a script that verify the state of this process: If the process is up, the script shouldn't do nothing and if it's down he should run it. Can... (3 Replies)
Discussion started by: adilyos
3 Replies

5. Shell Programming and Scripting

Script to Kill process which is in hang state

Hi, Can anyone help to create a script that will kill the process which is in hang state. (1 Reply)
Discussion started by: A.Santhosh
1 Replies

6. UNIX for Advanced & Expert Users

When a process will go to 'D' state?

I'm using "Linux hostname 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 18:40:08 UTC 2009 i686 GNU/Linux" All the client machines will use Thin-client ,I will use my laptop for working and I will mount my home directory from server to my laptop. If I open the firefox in my laptop the... (1 Reply)
Discussion started by: ungalnanban
1 Replies

7. Red Hat

How to Force KILL State -D Process/PID?

Hi Expert, I am not able to kill certain user process as root. I have tried using: pkill -u uname skill KILL -u uname kill -9 PID *** I have not using killall yet, since this server has more than 100 users online atm. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND... (1 Reply)
Discussion started by: regmaster
1 Replies

8. Shell Programming and Scripting

Unix script (sh): state of ftp process

Hi guys, I'm writing a script in which I have to get file from a remote host by ftp. The problem is that the remote machine could be very slow, not connected or ok. To resolve this problem, I write this: echo "verbose on" > ftprap.cmd echo "prompt " >> ftprap.cmd echo "ascii"... (3 Replies)
Discussion started by: egiz81
3 Replies

9. UNIX for Dummies Questions & Answers

child process state

Hi all, I have one requirement,I have two shell programs one is parent and the other one is child . from parent script i need to execute/trigger/call child script as background job. my requirement is after calling child script i want the child process information i.e PID of child weather it is... (8 Replies)
Discussion started by: smreddy
8 Replies

10. UNIX for Dummies Questions & Answers

Process State

If your process makes a system call, then while the system call code is being run in the kernel, is your process READY, RUNNING or BLOCKED? (1 Reply)
Discussion started by: ianlow
1 Replies
Login or Register to Ask a Question