2fdf0eda8d928190b17547937e9929a9c82f9001
[projects/cmucl/cmucl.git] / src / lisp / osf1-os.h
1 /*
2
3  $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/osf1-os.h,v 1.3 2005/01/13 19:55:00 fgilham Rel $
4
5  This code was written as part of the CMU Common Lisp project at
6  Carnegie Mellon University, and has been placed in the public domain.
7
8 */
9
10 #ifndef _OSF1_OS_H_
11 #define _OSF1_OS_H_
12
13 #include <sys/types.h>
14 #include <sys/mman.h>
15
16 typedef caddr_t os_vm_address_t;
17 typedef size_t os_vm_size_t;
18 typedef off_t os_vm_offset_t;
19 typedef int os_vm_prot_t;
20
21 #define OS_VM_PROT_READ PROT_READ
22 #define OS_VM_PROT_WRITE PROT_WRITE
23 #define OS_VM_PROT_EXECUTE PROT_EXEC
24
25 #define OS_VM_DEFAULT_PAGESIZE  8192
26
27 #endif /* _OSF1_OS_H_ */