Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For child processes, the wait() and waitpid() functions can be used to suspends execution of the current process until a child has exited. But this function can not be used for non-child processes.

Is there another function, which can wait for exit of any process ?

share|improve this question

6 Answers

up vote 15 down vote accepted

Nothing equivalent to wait(). The usual practice is to poll using kill(pid, 0) and looking for return value -1 and errno of ESRCH to indicate that the process is gone.

share|improve this answer
1  
Is it ok to have such busy-loop ? – CsTamas Jul 21 '09 at 7:37
Well, you don't want to make it too busy; you should usleep() for a while after each kill() that doesn't find the process gone. Then you have to strike a balance between how busy your polling is and how long it's okay for the process to be gone before you notice. – chaos Jul 21 '09 at 7:41
Oh, usleep() became obsolete while I wasn't looking, apparently. Seems you should now nanosleep() instead. – chaos Jul 21 '09 at 7:43
maybe you wanted to write kill(pid,0) It's int kill(pid_t pid, int sig) – Metiu Jun 22 '10 at 14:17
1  
@Sam Hocevar: And nothing about what the race condition consists of or how to do this without it. Not really helping. – chaos Jan 10 '12 at 15:34
show 4 more comments

You could also create a socket or a FIFO and read on them. The FIFO is especially simple: Connect the standard output of your child with the FIFO and read. The read will block until the child exits (for any reason) or until it emits some data. So you'll need a little loop to discard the unwanted text data.

If you have access to the source of the child, open the FIFO for writing when it starts and then simply forget about it. The OS will clean the open file descriptor when the child terminates and your waiting "parent" process will wake up.

share|improve this answer
But the process is not a child... – LtWorf Dec 2 '12 at 22:19

On BSDs and OS X, you can use kqueue with EVFILT_PROC+NOTE_EXIT to do exactly that. No polling required. Unfortunately there's no Linux equivalent.

share|improve this answer
2  
Shame on linux that they haven't ported kqueue. – Lothar Jan 9 at 0:43

You could attach to the process with ptrace(2). From the shell, strace -p PID >/dev/null 2>&1 seems to work. This avoid the busy-waiting, though it will slow down the traced process, and will not work on all processes (only yours, which is a bit better than only child processes).

share|improve this answer
1  
Knowledge never harms, but for shells, I recommend the "standard" way, polling periodically; see question 1058047. Although it may be a rare case, but strace can make a busy loop. Eg $ (read) &; strace -p $!. Notice that (read) & itself is innocuous. – teika kazura Jul 30 '12 at 10:40

None I am aware of. Apart from the solution from chaos, you can use semaphores if you can change the program you want to wait for.

The library functions are sem_open(3), sem_init(3), sem_wait(3), ...

sem_wait(3) performs a wait, so you don´t have to do busy waiting as in chaos´ solution. Of course, using semaphores makes your programs more complex and it may not be worth the trouble.

share|improve this answer

Maybe it could be possible to wait for /proc/[pid] or /proc/[pid]/[something] to disappear?

There are poll() and other file event waiting functions, maybe that could help?

share|improve this answer
Yes, it's a good idea. Unless the same process id is reused so quickly - but probably this happens rarely – CsTamas Aug 12 '10 at 18:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.