e11825cddcc3ff4ea444b1a409cecb8a841bcccd
[projects/cmucl/cmucl.git] / src / lisp / mach-os.h
1 /*
2
3  $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-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 _MACH_OS_H_
11 #define _MACH_OS_H_
12
13 #include <mach.h>
14
15 typedef vm_address_t os_vm_address_t;
16 typedef vm_size_t os_vm_size_t;
17 typedef vm_offset_t os_vm_offset_t;
18 typedef vm_prot_t os_vm_prot_t;
19
20 #define OS_VM_PROT_READ VM_PROT_READ
21 #define OS_VM_PROT_WRITE VM_PROT_WRITE
22 #define OS_VM_PROT_EXECUTE VM_PROT_EXECUTE
23
24 #define OS_VM_DEFAULT_PAGESIZE  4096
25
26 #endif /* _MACH_OS_H_ */