X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=signal.c;h=cc49da11f2b647c83cb068b0cecab439419eb571;hp=3f3dbf69d78dadb0ad8e732930dba88e4317418f;hb=b18a5fbb286422395ae52b78dcf0ceb2c3d070c8;hpb=5c556c52f1196cea4536d36b683372de532943a9 diff --git a/signal.c b/signal.c index 3f3dbf69..cc49da11 100644 --- a/signal.c +++ b/signal.c @@ -85,13 +85,13 @@ int para_reap_child(pid_t *pid) if (*pid < 0) return -ERRNO_TO_PARA_ERROR(errno); if (WIFEXITED(status)) - PARA_DEBUG_LOG("child %i exited. Exit status: %i\n", *pid, + PARA_DEBUG_LOG("child %i exited. Exit status: %i\n", (int)*pid, WEXITSTATUS(status)); else if (WIFSIGNALED(status)) - PARA_DEBUG_LOG("child %i was killed by signal %i\n", *pid, + PARA_DEBUG_LOG("child %i was killed by signal %i\n", (int)*pid, WTERMSIG(status)); else - PARA_WARNING_LOG("child %i terminated abormally\n", *pid); + PARA_WARNING_LOG("child %i terminated abormally\n", (int)*pid); return 1; } @@ -137,13 +137,17 @@ int para_next_signal(void) int s; ssize_t r; - if ((r = read(signal_pipe[0], &s, sizeof(s)) == sizeof(s)) > 0) { + r = read(signal_pipe[0], &s, sizeof(s)); + if (r == sizeof(s)) { PARA_DEBUG_LOG("next signal: %d\n", s); return s; } return r < 0 && (errno != EAGAIN)? 0 : -E_SIGNAL_READ; } +/** + * Close the signal pipe. + */ void para_signal_shutdown(void) { close(signal_pipe[1]);