diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/utils.c b/os/utils.c index 868eb043a..9b6fb3081 100644 --- a/os/utils.c +++ b/os/utils.c @@ -1255,6 +1255,7 @@ SmartScheduleInit(void) memset((char *) &act, 0, sizeof(struct sigaction)); /* Set up the timer signal function */ + act.sa_flags = SA_RESTART; act.sa_handler = SmartScheduleTimer; sigemptyset(&act.sa_mask); sigaddset(&act.sa_mask, SIGALRM); |