X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Flinux-os.c;h=ea2f1b07939960387b745abd944c3fba9790c2b1;hb=d4b738d6c0b354de817fa490b50814e40872b3d0;hp=b57b510993abc9db679eb6b227f753fbf1449fa3;hpb=0728a004f189ca766a215172a31b6c952e4fb162;p=sbcl.git diff --git a/src/runtime/linux-os.c b/src/runtime/linux-os.c index b57b510..ea2f1b0 100644 --- a/src/runtime/linux-os.c +++ b/src/runtime/linux-os.c @@ -28,6 +28,7 @@ #include "os.h" #include "arch.h" #include "globals.h" +#include "sbcl.h" #include "interrupt.h" #include "interr.h" #include "lispregs.h" @@ -248,10 +249,12 @@ sigsegv_handler(int signal, siginfo_t *info, void* void_context) void sigcont_handler(int signal, siginfo_t *info, void *void_context) { - /* we need to have a handler installed for this signal so that - * sigwaitinfo() for it actually returns at the appropriate time - */ - fprintf(stderr, "Thread %d received stray SIGCONT\n", getpid()); + /* We need to have a handler installed for this signal so that + * sigwaitinfo() for it actually returns at the appropriate time. + * We don't need it to actually do anything. This mkes it + * possibly the only signal handler in SBCL that doesn't depend on + * not-guaranteed-by-POSIX features + */ } void @@ -262,6 +265,8 @@ os_install_interrupt_handlers(void) #ifdef LISP_FEATURE_SB_THREAD undoably_install_low_level_interrupt_handler(SIG_INTERRUPT_THREAD, handle_rt_signal); + undoably_install_low_level_interrupt_handler(SIG_STOP_FOR_GC, + sig_stop_for_gc_handler); #endif undoably_install_low_level_interrupt_handler(SIGCONT, sigcont_handler);