Changeset View
Changeset View
Standalone View
Standalone View
sys/vm/vm.h
Show First 20 Lines • Show All 62 Lines • ▼ Show 20 Lines | |||||
#include <machine/vm.h> | #include <machine/vm.h> | ||||
typedef char vm_inherit_t; /* inheritance codes */ | typedef char vm_inherit_t; /* inheritance codes */ | ||||
#define VM_INHERIT_SHARE ((vm_inherit_t) 0) | #define VM_INHERIT_SHARE ((vm_inherit_t) 0) | ||||
#define VM_INHERIT_COPY ((vm_inherit_t) 1) | #define VM_INHERIT_COPY ((vm_inherit_t) 1) | ||||
#define VM_INHERIT_NONE ((vm_inherit_t) 2) | #define VM_INHERIT_NONE ((vm_inherit_t) 2) | ||||
#define VM_INHERIT_ZERO ((vm_inherit_t) 3) | |||||
#define VM_INHERIT_DEFAULT VM_INHERIT_COPY | #define VM_INHERIT_DEFAULT VM_INHERIT_COPY | ||||
typedef u_char vm_prot_t; /* protection codes */ | typedef u_char vm_prot_t; /* protection codes */ | ||||
#define VM_PROT_NONE ((vm_prot_t) 0x00) | #define VM_PROT_NONE ((vm_prot_t) 0x00) | ||||
#define VM_PROT_READ ((vm_prot_t) 0x01) | #define VM_PROT_READ ((vm_prot_t) 0x01) | ||||
#define VM_PROT_WRITE ((vm_prot_t) 0x02) | #define VM_PROT_WRITE ((vm_prot_t) 0x02) | ||||
#define VM_PROT_EXECUTE ((vm_prot_t) 0x04) | #define VM_PROT_EXECUTE ((vm_prot_t) 0x04) | ||||
▲ Show 20 Lines • Show All 76 Lines • Show Last 20 Lines |