Erik Faye-Lund <kusmab...@gmail.com> writes:

> @@ -1538,13 +1563,7 @@ 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) {
> -                     if (isatty(STDERR_FILENO))
> -                             fputs("Alarm clock\n", stderr);
> -                     exit(128 + SIGALRM);
> -             }
> -             if (timer_fn != SIG_IGN)
> -                     timer_fn(SIGALRM);
> +             mingw_raise(SIGALRM);
>               if (one_shot)
>                       break;
>       }

This hunk seems to have been based on a slightly newer codebase than
what I have, and I had to wiggle the patch a bit to make the series
apply.  Please double check the result when I push out the 'pu'
branch.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to