0.9.11.19:
[sbcl.git] / src / runtime / bsd-os.h
1 /*
2  * This software is part of the SBCL system. See the README file for
3  * more information.
4  *
5  * This software is derived from the CMU CL system, which was
6  * written at Carnegie Mellon University and released into the
7  * public domain. The software is in the public domain and is
8  * provided with absolutely no warranty. See the COPYING and CREDITS
9  * files for more information.
10  */
11
12 #ifdef __FreeBSD__
13 #include <osreldate.h>
14 #endif
15
16 #include <sys/types.h>
17 #include <sys/mman.h>
18 #include <sys/signal.h>
19
20 #ifdef LISP_FEATURE_DARWIN
21 #include <mach/mach_types.h>
22 #endif
23
24 typedef caddr_t os_vm_address_t;
25 #if defined __NetBSD__
26 typedef vsize_t os_vm_size_t;
27 #elif defined __OpenBSD__
28 typedef size_t os_vm_size_t;
29 #else
30 typedef vm_size_t os_vm_size_t;
31 #endif
32 typedef off_t os_vm_offset_t;
33 typedef int os_vm_prot_t;
34 typedef int os_context_register_t;
35
36 #if defined __OpenBSD__
37 /* name defined for compatibility between OpenBSD 3.1 sigaltstack(2) and
38  * Linux sigaltstack(2) */
39 typedef struct sigaltstack stack_t;
40 #elif defined __FreeBSD__
41 /* FreeBSD 4.6 and NetBSD 1.6 already have stack_t defined. */
42 #endif
43
44 #if defined __FreeBSD__
45 /* Note: The man page for sigaction(2) in FreeBSD 4.0 says that this
46  * is an mcontext_t, but according to comments by Raymond Wiker in the
47  * original FreeBSD port of SBCL, that's wrong, it's actually a
48  * ucontext_t. */
49
50 #include <sys/ucontext.h>
51 typedef ucontext_t os_context_t;
52 #define SIG_MEMORY_FAULT SIGSEGV
53 /* Sometime in late 2005 FreeBSD was changed to signal SIGSEGV instead
54  * of SIGBUS for memory faults, as required by POSIX. In order to
55  * support both new and old FreeBSD at the same time, both signals are
56  * hooked to the GC write barrier machinery. If you're reading this
57  * message in the far future where FreeBSD 6 and earlier are just
58  * quaint memories, feel free to delete this hack (and any code that's
59  * #ifdef SIG_MEMORY_FAULT2'ed). -- JES, 2005-12-30
60  */
61 #define SIG_MEMORY_FAULT2 SIGBUS
62
63 #elif defined __OpenBSD__
64
65 typedef struct sigcontext os_context_t;
66 #define SIG_MEMORY_FAULT SIGSEGV
67
68 #elif defined __NetBSD__
69
70 #include <ucontext.h>
71 typedef ucontext_t os_context_t;
72 #define SIG_MEMORY_FAULT SIGSEGV
73
74 #elif defined LISP_FEATURE_DARWIN
75   /* man pages claim that the third argument is a sigcontext struct,
76      but ucontext_t is defined, matches sigcontext where sensible,
77      offers better access to mcontext, and is of course the SUSv2-
78      mandated type of the third argument, so we use that instead.
79      If Apple is going to break ucontext_t out of spite, I'm going
80      to be cross with them ;) -- PRM */
81
82 #if defined(LISP_FEATURE_X86)
83 #include <sys/ucontext.h>
84 #include <sys/_types.h>
85 typedef struct ucontext os_context_t;
86 #else
87 #include <ucontext.h>
88 typedef ucontext_t os_context_t;
89 #endif
90
91 #define SIG_MEMORY_FAULT SIGBUS
92
93 #else
94 #error unsupported BSD variant
95 #endif
96
97 #include "target-arch-os.h"
98 #include "target-arch.h"
99
100 #define OS_VM_PROT_READ PROT_READ
101 #define OS_VM_PROT_WRITE PROT_WRITE
102 #define OS_VM_PROT_EXECUTE PROT_EXEC