X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=signal.c;h=32d6ab6624e5f493ac393b630a603c0968f11497;hb=HEAD;hp=e5ef7a4119dc271320079d778313c5abf1d259d2;hpb=742c8b3f79a59278ced71e1855da1846b157b494;p=paraslash.git diff --git a/signal.c b/signal.c index e5ef7a41..d9a6aa37 100644 --- a/signal.c +++ b/signal.c @@ -48,7 +48,7 @@ struct signal_task *signal_init_or_die(void) ret = mark_fd_nonblocking(signal_pipe[1]); if (ret < 0) goto err_out; - st = para_calloc(sizeof(*st)); + st = zalloc(sizeof(*st)); st->fd = signal_pipe[0]; return st; err_out: @@ -72,10 +72,13 @@ static void generic_signal_handler(int s) errno = save_errno; return; } - if (ret < 0) - PARA_EMERG_LOG("%s\n", strerror(errno)); - else - PARA_EMERG_LOG("short write to signal pipe\n"); + /* + * This is a fatal error which should never happen. We must not call + * PARA_XXX_LOG() here because this might acquire the log mutex which + * is already taken by the main program if the interrupt occurs while a + * log message is being printed. The mutex will not be released as long + * as this signal handler is running, so a deadlock ensues. + */ exit(EXIT_FAILURE); }