Commit e6ac3af4 authored by Sergey Lyubka's avatar Sergey Lyubka

Removed debug message

parent 3adaf8db
...@@ -86,7 +86,6 @@ static void WINCDECL signal_handler(int sig_num) { ...@@ -86,7 +86,6 @@ static void WINCDECL signal_handler(int sig_num) {
// reap zombies if SIGCHLD is ignored. On QNX, for example, waitpid() // reap zombies if SIGCHLD is ignored. On QNX, for example, waitpid()
// fails if SIGCHLD is ignored, making system() non-functional. // fails if SIGCHLD is ignored, making system() non-functional.
if (sig_num == SIGCHLD) { if (sig_num == SIGCHLD) {
printf("dssfdsfds\n");
do {} while (waitpid(-1, &sig_num, WNOHANG) > 0); do {} while (waitpid(-1, &sig_num, WNOHANG) > 0);
} else } else
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment