+#if 0
+/*
+ * The UPL interfaces are not ready for user-level export.
+ */
+routine vm_map_get_upl(
+ target_task : vm_map_t;
+ address : vm_map_offset_t;
+ inout size : vm_size_t;
+ out upl : upl_t;
+ out page_info : upl_page_info_array_t, CountInOut;
+ inout flags : integer_t;
+ force_data_sync : integer_t);
+
+routine vm_upl_map(
+ target_task : vm_map_t;
+ upl : upl_t;
+ inout address : vm_address_t);
+
+routine vm_upl_unmap(
+ target_task : vm_map_t;
+ upl : upl_t);
+#else
+skip; /* was vm_map_get_upl */
+skip; /* was vm_upl_map */
+skip; /* was vm_upl_unmap */
+#endif
+
+/*
+ * 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 vm_allocate() with VM_FLAGS_PURGABLE
+ * specified. See the routine implementation for a complete
+ * definition of the routine.
+ */
+routine PREFIX(vm_purgable_control) (
+ target_task : vm_map_t;
+ address : vm_address_t;
+ control : vm_purgable_t;
+ inout state : int);
+
+
+routine vm_map_exec_lockdown(
+ target_task : vm_map_t);
+
+
+/* vim: set ft=c : */