]> Dogcows Code - chaz/tint2/blobdiff - src/tint.c
*fix* execute an external command by calling fork/execl and do not ignore SIGCHLD...
[chaz/tint2] / src / tint.c
index 23394d9ef5a3f6f64ce35b10c7a9b8321d9b682b..fbe62ace07d5a19be7cd9f9666c81b469ab1a613 100644 (file)
@@ -95,7 +95,7 @@ void init (int argc, char *argv[])
        sigaction(SIGINT, &sa, 0);
        sigaction(SIGTERM, &sa, 0);
        sigaction(SIGHUP, &sa, 0);
-       signal(SIGCHLD, SIG_IGN);               // don't have to wait() after fork()
+//     signal(SIGCHLD, SIG_IGN);               // don't have to wait() after fork()
 
        // BSD is too stupid to support pselect(), therefore we have to use select and hope that we do not
        // end up in a race condition there
This page took 0.021319 seconds and 4 git commands to generate.