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.
11 #include <sys/types.h>
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;
21 #define OS_VM_PROT_READ PROT_READ
22 #define OS_VM_PROT_WRITE PROT_WRITE
23 #define OS_VM_PROT_EXECUTE PROT_EXECUTE
25 /* formerly 4096, on irix 6.2 on an R4400 Onyx, and irix 6.4 on an Octane,
27 #define OS_VM_DEFAULT_PAGESIZE 16384
29 #endif /* _IRIX_OS_H_ */