From: Erik Faye-Lund Date: Tue, 4 Dec 2012 08:10:37 +0000 (+0100) Subject: mingw: correct exit-code for SIGALRM's SIG_DFL X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f4f549892ac686a9adcf3cb72bee1a11c0566c88;p=git.git mingw: correct exit-code for SIGALRM's SIG_DFL Make sure SIG_DFL for SIGALRM exits with 128 + SIGALRM so other processes can diagnose why it exits. While we're at it, make sure we only write to stderr if it's a terminal, and change the output to match that of Linux. Signed-off-by: Erik Faye-Lund Signed-off-by: Junio C Hamano --- diff --git a/compat/mingw.c b/compat/mingw.c index 4e6383898..8ae424564 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1560,8 +1560,11 @@ static sig_handler_t timer_fn = SIG_DFL; static unsigned __stdcall ticktack(void *dummy) { while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) { - if (timer_fn == SIG_DFL) - die("Alarm"); + if (timer_fn == SIG_DFL) { + if (isatty(STDERR_FILENO)) + fputs("Alarm clock\n", stderr); + exit(128 + SIGALRM); + } if (timer_fn != SIG_IGN) timer_fn(SIGALRM); if (one_shot)