Skip to content
FreeBSD-os.h 1.27 KiB
Newer Older
ram's avatar
ram committed
/*

 $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/FreeBSD-os.h,v 1.6 2003/03/27 12:42:10 gerd Exp $
ram's avatar
ram committed

 This code was written as part of the CMU Common Lisp project at
 Carnegie Mellon University, and has been placed in the public domain.

*/

ram's avatar
ram committed
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/signal.h>

#define MAP_ANONYMOUS MAP_ANON
#define MAP_VARIABLE 0
typedef caddr_t   os_vm_address_t;
ram's avatar
ram committed
typedef vm_size_t os_vm_size_t;
typedef off_t     os_vm_offset_t;
typedef int       os_vm_prot_t;
ram's avatar
ram committed

#define OS_VM_PROT_READ    PROT_READ
#define OS_VM_PROT_WRITE   PROT_WRITE
ram's avatar
ram committed
#define OS_VM_PROT_EXECUTE PROT_EXEC

#define OS_VM_DEFAULT_PAGESIZE	4096

int sc_reg (struct sigcontext*,int);
void os_save_context (void);
moore's avatar
 
moore committed

/* I *think* this is when things became incompatible with old
#if __FreeBSD_version > 400010
#define POSIX_SIGS
/* If we used SA_SIGINFO in sigaction() the third argument to signal
   handlers would be a struct ucontext_t.  (The manpage for
   sigaction(2) is wrong!)  Sigcontext and ucontext_t are
   "compatible", but access to registers in a ucontext_t goes through
   the uc_mcontext field, so we just won't bother.  */
#define USE_SA_SIGINFO 0
#define uc_sigmask sc_mask
#endif

#define PROTECTION_VIOLATION_SIGNAL SIGBUS