Skip to content
Snippets Groups Projects
Commit b07eaff9 authored by wlott's avatar wlott
Browse files

Changed interrupt_maybe_gc to take the signal and code in addition to the

sigcontext so it can pass them to arch_get_bad_addr.
parent 36232b68
No related branches found
No related tags found
No related merge requests found
/*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-os.c,v 1.1 1992/07/28 20:14:54 wlott Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-os.c,v 1.2 1992/09/08 20:24:49 wlott Exp $
*
* OS-dependent routines. This file (along with os.h) exports an
* OS-independent interface to the operating system VM facilities.
......@@ -166,7 +166,7 @@ vm_address_t test;
#ifndef ibmrt
static void sigbus_handler(int signal, int code, struct sigcontext *context)
{
if(!interrupt_maybe_gc(context))
if(!interrupt_maybe_gc(signal, code, context))
interrupt_handle_now(signal, code, context);
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment