*** empty log message ***

This commit is contained in:
Marc Alexander Lehmann 2009-07-14 00:09:59 +00:00
parent 76986c3ef9
commit 34cd283b1b
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ TODO: EV_MINIMAL
- implement ev_loop_depth.
- do not compile in any priority code when EV_MAXPRI == EV_MINPRI.
- support EV_MINIMAL==2 for a reduced API.
- actually 0-initialise struct sigaction when installing signals.
3.6 Tue Apr 28 02:49:30 CEST 2009
- multiple timers becoming ready within an event loop iteration

2
ev.c
View File

@ -2587,7 +2587,7 @@ ev_signal_start (EV_P_ ev_signal *w)
#if _WIN32
signal (w->signum, ev_sighandler);
#else
struct sigaction sa;
struct sigaction sa = { };
sa.sa_handler = ev_sighandler;
sigfillset (&sa.sa_mask);
sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */