View | Details | Raw Unified | Return to bug 271711 | Differences between
and this patch

Collapse All | Expand All

(-)src/runtime/bsd-os.c (-5 / +1 lines)
Lines 283-293 os_install_interrupt_handlers(void) Link Here
283
os_install_interrupt_handlers(void)
283
os_install_interrupt_handlers(void)
284
{
284
{
285
    if (INSTALL_SIG_MEMORY_FAULT_HANDLER) {
285
    if (INSTALL_SIG_MEMORY_FAULT_HANDLER) {
286
    ll_install_handler(SIG_MEMORY_FAULT,
286
    ll_install_handler(SIG_MEMORY_FAULT, memory_fault_handler);
287
#if defined(LISP_FEATURE_FREEBSD) && !defined(__GLIBC__)
288
                                                 (__siginfohandler_t *)
289
#endif
290
                                                 memory_fault_handler);
291
287
292
#ifdef LISP_FEATURE_DARWIN
288
#ifdef LISP_FEATURE_DARWIN
293
    /* Unmapped pages get this and not SIGBUS. */
289
    /* Unmapped pages get this and not SIGBUS. */

Return to bug 271711