a2f1c34508c5c790042ffa3bb1f92a30ba0b57dd
[sbcl.git] / src / runtime / linux-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 #include <stdlib.h>
13 #include <sys/types.h>
14 #include <sys/mman.h>
15 #include <sys/signal.h>
16 #include <ucontext.h>
17 #include <string.h>
18  /* #include <dlfcn.h> */
19 #include <sys/time.h>
20 #include <sys/stat.h>
21 #include <unistd.h>
22 #include <sys/syscall.h>
23 #include <asm/unistd.h>
24 #include <linux/version.h>
25
26 #define linuxversion(a, b, c) (((a)<<16)+((b)<<8)+(c))
27
28 typedef caddr_t os_vm_address_t;
29 typedef size_t os_vm_size_t;
30 typedef off_t os_vm_offset_t;
31 typedef int os_vm_prot_t;
32
33 typedef struct ucontext os_context_t;
34
35 #define OS_VM_PROT_READ    PROT_READ
36 #define OS_VM_PROT_WRITE   PROT_WRITE
37 #define OS_VM_PROT_EXECUTE PROT_EXEC
38
39 #define OS_VM_DEFAULT_PAGESIZE  4096
40
41 #define SET_FPU_CONTROL_WORD(cw) asm("fldcw %0" : : "m" (cw))