]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/mach/vm_prot.h
xnu-2422.115.4.tar.gz
[apple/xnu.git] / osfmk / mach / vm_prot.h
index 6fe17d43cc53a69e4e9d09b033db062bfcf9bba9..ae2d67584131ac1c6b511e46ec17cb332afd5cea 100644 (file)
@@ -129,13 +129,20 @@ typedef int               vm_prot_t;
 
 #define VM_PROT_WANTS_COPY     ((vm_prot_t) 0x10)
 
-
+#ifdef PRIVATE
 /*
  *     The caller wants this memory region treated as if it had a valid
  *     code signature.
  */
 
 #define VM_PROT_TRUSTED                ((vm_prot_t) 0x20)
+#endif /* PRIVATE */
 
+/*
+ *     Another invalid protection value.
+ *     Indicates that the other protection bits are to be applied as a mask
+ *     against the actual protection bits of the map entry.
+ */
+#define VM_PROT_IS_MASK                ((vm_prot_t) 0x40)
 
 #endif /* _MACH_VM_PROT_H_ */