diff options
Diffstat (limited to 'xorg-server/os/osinit.c')
-rw-r--r-- | xorg-server/os/osinit.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/xorg-server/os/osinit.c b/xorg-server/os/osinit.c index d04ac6636..6ecf0821c 100644 --- a/xorg-server/os/osinit.c +++ b/xorg-server/os/osinit.c @@ -169,15 +169,9 @@ OsInit(void) struct sigaction act, oact;
int i;
int siglist[] = { SIGSEGV, SIGQUIT, SIGILL, SIGFPE, SIGBUS,
-#ifdef SIGSYS
SIGSYS,
-#endif
-#ifdef SIGXCPU
SIGXCPU,
-#endif
-#ifdef SIGXFSZ
SIGXFSZ,
-#endif
#ifdef SIGEMT
SIGEMT,
#endif
@@ -314,9 +308,7 @@ OsInit(void) * log file name if logging to a file is desired.
*/
LogInit(NULL, NULL);
- if (!SmartScheduleDisable)
- if (!SmartScheduleInit ())
- SmartScheduleDisable = TRUE;
+ SmartScheduleInit ();
}
void
|