X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Finterrupt.h;h=07b4a2d1e7c40ecd03156a7d6e734654002d7833;hb=1cdc827b3ae2b9a9952f0d497d630c15054015cd;hp=4f2b0978f6f5625bc4f9858903710c4c4e7bc4ec;hpb=cf507f95509a855a752b6f1771aa06877b8a3b30;p=sbcl.git diff --git a/src/runtime/interrupt.h b/src/runtime/interrupt.h index 4f2b097..07b4a2d 100644 --- a/src/runtime/interrupt.h +++ b/src/runtime/interrupt.h @@ -12,7 +12,7 @@ #if !defined(_INCLUDE_INTERRUPT_H_) #define _INCLUDE_INTERRUPT_H_ -#include +#include "runtime.h" #include /* @@ -24,7 +24,12 @@ * stack by the kernel, so copying a libc-sized sigset_t into it will * overflow and cause other data on the stack to be corrupted */ /* FIXME: do not rely on NSIG being a multiple of 8 */ -#define REAL_SIGSET_SIZE_BYTES ((NSIG/8)) + +#ifdef LISP_FEATURE_WIN32 +# define REAL_SIGSET_SIZE_BYTES (4) +#else +# define REAL_SIGSET_SIZE_BYTES ((NSIG/8)) +#endif static inline void sigcopyset(sigset_t *new, sigset_t *old) @@ -109,16 +114,29 @@ struct interrupt_data { siginfo_t pending_info; sigset_t pending_mask; /* Was pending mask saved for gc request? True if GC_PENDING or - * SIG_STOP_FOR_GC happened in a pseudo atomic with no GC_INHIBIT - * NIL. Both deferrable interrupt handlers and gc are careful not - * to clobber each other's pending_mask. */ + * SIG_STOP_FOR_GC happened in a pseudo atomic with GC_INHIBIT NIL + * and with no pending handler. Both deferrable interrupt handlers + * and gc are careful not to clobber each other's pending_mask. */ boolean gc_blocked_deferrables; +#ifdef GENCGC_IS_PRECISE + /* On PPC when consing wants to turn to alloc(), it does so via a + * trap. When alloc() wants to save the sigmask it consults + * allocation_trap_context. It does not look up the most recent + * context, because alloc() can be called from other places + * too. */ + os_context_t *allocation_trap_context; +#endif }; +typedef lispobj (*call_into_lisp_lookalike)( + lispobj fun, lispobj *args, int nargs); + extern boolean interrupt_handler_pending_p(void); extern void interrupt_init(void); extern void fake_foreign_function_call(os_context_t* context); extern void undo_fake_foreign_function_call(os_context_t* context); +extern void arrange_return_to_c_function( + os_context_t *, call_into_lisp_lookalike, lispobj); extern void arrange_return_to_lisp_function(os_context_t *, lispobj); extern void interrupt_handle_now(int, siginfo_t*, os_context_t*); extern void interrupt_handle_pending(os_context_t*); @@ -139,8 +157,9 @@ typedef void (*interrupt_handler_t)(int, siginfo_t *, os_context_t *); extern void undoably_install_low_level_interrupt_handler ( int signal, interrupt_handler_t handler); -extern unsigned long install_handler(int signal, - interrupt_handler_t handler); +extern uword_t install_handler(int signal, + interrupt_handler_t handler, + int synchronous); extern union interrupt_handler interrupt_handlers[NSIG]; @@ -158,4 +177,15 @@ extern void lisp_memory_fault_error(os_context_t *context, os_vm_address_t addr); #endif +#include "thread.h" + +extern void lower_thread_control_stack_guard_page(struct thread *th); +extern void reset_thread_control_stack_guard_page(struct thread *th); + +#if defined(LISP_FEATURE_SB_SAFEPOINT) && !defined(LISP_FEATURE_WIN32) +# ifdef LISP_FEATURE_SB_THRUPTION +void thruption_handler(int signal, siginfo_t *info, os_context_t *context); +# endif +#endif + #endif