Skip to content
Snippets Groups Projects
Commit a9b9c1fb authored by cshapiro's avatar cshapiro
Browse files

Remove no-op macros.

parent 042fdad7
No related branches found
No related tags found
No related merge requests found
/*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Darwin-os.h,v 1.5 2007/06/12 03:21:46 cshapiro Exp $
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Darwin-os.h,v 1.6 2007/07/15 06:53:34 cshapiro Exp $
This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain.
......@@ -30,8 +30,6 @@ typedef int os_vm_prot_t;
#define HANDLER_ARGS int signal, siginfo_t *code, os_context_t *context
#define CODE(code) ((code) ? code->si_code : 0)
#define HANDLER_GET_CONTEXT
#define GET_CONTEXT
#define os_context_t ucontext_t
int *sc_reg(os_context_t *, int);
......
/*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-arch.c,v 1.9 2006/02/19 22:56:35 rtoy Exp $
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-arch.c,v 1.10 2007/07/15 06:53:34 cshapiro Exp $
This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain.
......@@ -375,7 +375,7 @@ sigill_handler(HANDLER_ARGS)
int badinst;
int opcode;
HANDLER_GET_CONTEXT SAVE_CONTEXT();
SAVE_CONTEXT();
sigprocmask(SIG_SETMASK, &context->uc_sigmask, 0);
opcode = *((int *) SC_PC(context));
......
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