X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Finterrupt.c;h=467a2e4431cefab9fc412c8d5e12845f15fbdf6a;hb=7f0f521aa3f6b45259c5dfd5f7f11adcd1a7cac6;hp=159a9aeb81626dc2236399e0d692fb0f35c340ae;hpb=68fd2d2dd6f265669a8957accd8a33e62786a97e;p=sbcl.git diff --git a/src/runtime/interrupt.c b/src/runtime/interrupt.c index 159a9ae..467a2e4 100644 --- a/src/runtime/interrupt.c +++ b/src/runtime/interrupt.c @@ -15,7 +15,7 @@ #include #include - +#include #include #include "runtime.h" @@ -40,6 +40,7 @@ void sigaddset_blockable(sigset_t *s) sigaddset(s, SIGPIPE); sigaddset(s, SIGALRM); sigaddset(s, SIGURG); + sigaddset(s, SIGFPE); sigaddset(s, SIGTSTP); sigaddset(s, SIGCHLD); sigaddset(s, SIGIO); @@ -290,7 +291,6 @@ interrupt_handle_pending(os_context_t *context) { undo_fake_foreign_function_call(context); } - fprintf(stderr,"interrupt-handle-pending: back from MAYBE_GC\n"); } /* FIXME: This isn't very clear. It would be good to reverse