Simplify (and robustify) regular PACKing
[sbcl.git] / src / runtime / bsd-os.h
index eb6037b..880c5f7 100644 (file)
@@ -59,13 +59,15 @@ typedef ucontext_t os_context_t;
 extern int sig_memory_fault;
 #define SIG_MEMORY_FAULT (sig_memory_fault)
 
-#define SIG_INTERRUPT_THREAD (SIGINFO)
-#define SIG_STOP_FOR_GC (SIGUSR1)
+#define SIG_STOP_FOR_GC (SIGUSR2)
 
 #elif defined __OpenBSD__
 
 typedef struct sigcontext os_context_t;
 #define SIG_MEMORY_FAULT SIGSEGV
+#if defined(LISP_FEATURE_X86)
+extern int openbsd_use_fxsave;
+#endif
 
 #elif defined __NetBSD__