From eb4337fdc273e550aefa96843f3f15d058eeb97d Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 28 May 2017 19:38:08 -0700 Subject: [PATCH] Restore signal handler setup. --- src/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer.c b/src/timer.c index 4fbd22f..feee1e7 100644 --- a/src/timer.c +++ b/src/timer.c @@ -1139,7 +1139,7 @@ void int_init() { int_timer_init(); /* periodic interrupt timer */ int_io_init(); /* SIGIO and SIGPOLL async I/O handlers */ int_file_init(); /* file-io TIMEOUT support */ - /* int_panic_init(); /* catch for all other dangerous interrupts */ + int_panic_init(); /* catch for all other dangerous interrupts */ #ifdef FLTINT int_fp_init(); /* Floating-point exception handler */