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