programming/C_C++
chld_handler
공간사랑
2011. 9. 1. 15:07
void chld_handler(int signo) {
int status;
while (waitpid(-1, &status, WNOHANG) > 0);
}