Skip to content
Snippets Groups Projects
Commit 07f55692 authored by dtc's avatar dtc
Browse files

If sa_sigaction is not defined in the systems header files then define

it here to be sa_handler. This is necessary for older Linux
distributions which do not define sa_sigaction.
parent 20f73982
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Linux-os.h,v 1.10 1999/09/16 15:26:32 dtc Exp $ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/Linux-os.h,v 1.11 1999/09/22 14:42:08 dtc Exp $
This code was written as part of the CMU Common Lisp project at This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain. Carnegie Mellon University, and has been placed in the public domain.
...@@ -106,3 +106,7 @@ typedef struct sigcontext_struct sigcontext; ...@@ -106,3 +106,7 @@ typedef struct sigcontext_struct sigcontext;
#ifdef alpha #ifdef alpha
#define uc_sigmask sc_mask #define uc_sigmask sc_mask
#endif /* alpha */ #endif /* alpha */
#ifndef sa_sigaction
#define sa_sigaction sa_handler
#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