]> git.tuebingen.mpg.de Git - dss.git/commitdiff
Fix wait_pro_process().
authorAndre Noll <maan@systemlinux.org>
Fri, 21 Mar 2008 12:42:02 +0000 (13:42 +0100)
committerAndre Noll <maan@systemlinux.org>
Fri, 21 Mar 2008 12:42:02 +0000 (13:42 +0100)
The old code was racy.

dss.c

diff --git a/dss.c b/dss.c
index d77fef2f8cb31704c619d6cda61fd68570bbbe35..8b8e4bb5f69a0629381548de70ec2c43c3b30154 100644 (file)
--- a/dss.c
+++ b/dss.c
@@ -383,10 +383,14 @@ int wait_for_process(pid_t pid, int *status)
 
        DSS_DEBUG_LOG("Waiting for process %d to terminate\n", (int)pid);
        for (;;) {
-               pause();
-               ret = next_signal();
+               fd_set rfds;
+
+               FD_ZERO(&rfds);
+               FD_SET(signal_pipe, &rfds);
+               ret = dss_select(signal_pipe + 1, &rfds, NULL, NULL);
                if (ret < 0)
                        break;
+               ret = next_signal();
                if (!ret)
                        continue;
                if (ret == SIGCHLD) {
@@ -1096,6 +1100,7 @@ int main(int argc, char **argv)
 
        cmdline_parser_ext(argc, argv, &conf, &params); /* aborts on errors */
        parse_config_file(0);
+
        if (conf.daemon_given)
                daemon_init();
        setup_signal_handling();