X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Finterrupt.c;h=f191cd38db3b6f37112225411c2bb3925fa291f6;hb=22c1de0a40df83bb5628974010a879cb2c17ff53;hp=4480fc952c04a078d000b98c4d03bf2e8912095a;hpb=0e2c926fea68a32c8ec58f12daa0c2b5befef1d4;p=sbcl.git diff --git a/src/runtime/interrupt.c b/src/runtime/interrupt.c index 4480fc9..f191cd3 100644 --- a/src/runtime/interrupt.c +++ b/src/runtime/interrupt.c @@ -663,7 +663,7 @@ undoably_install_low_level_interrupt_handler (int signal, if(signal==SIG_MEMORY_FAULT) sa.sa_flags|= SA_ONSTACK; #endif - sigaction(signal, &sa, NULL); + sigaction(signal, &sa, NULL); data->interrupt_low_level_handlers[signal] = (ARE_SAME_HANDLER(handler, SIG_DFL) ? 0 : handler); }