Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
#include "unp.h" |
|
|
|
void |
|
sig_chld(int signo) |
|
{ |
|
pid_t pid; |
|
int stat; |
|
|
|
while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) |
|
printf("child %d terminated\n", pid); |
|
return; |
|
} |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.