+/*
+ * Control behavior and investigate state of a "purgable" object in
+ * the virtual address space of the target task. A purgable object is
+ * created via a call to mach_vm_allocate() with VM_FLAGS_PURGABLE
+ * specified. See the routine implementation for a complete
+ * definition of the routine.
+ */
+#if !defined(_MACH_VM_PUBLISH_AS_LOCAL_)
+routine PREFIX(mach_vm_purgable_control) (
+#else
+routine PREFIX(vm_purgable_control) (
+#endif
+ target_task : vm_map_t;
+ address : mach_vm_address_t;
+ control : vm_purgable_t;
+ inout state : int);
+
+
+#if !defined(_MACH_VM_PUBLISH_AS_LOCAL_)
+routine mach_vm_page_info(
+ target_task : vm_map_t;
+ address : mach_vm_address_t;
+ flavor : vm_page_info_flavor_t;
+ out info : vm_page_info_t, CountInOut);
+#else
+skip;
+#endif
+
+#if !defined(_MACH_VM_PUBLISH_AS_LOCAL_)
+routine mach_vm_page_range_query(
+ target_map : vm_map_t;
+ address : mach_vm_offset_t;
+ size : mach_vm_size_t;
+ dispositions : mach_vm_address_t;
+ inout dispositions_count : mach_vm_size_t);
+#else
+skip;
+#endif