]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/mach/vm_map.defs
xnu-3247.10.11.tar.gz
[apple/xnu.git] / osfmk / mach / vm_map.defs
index b59e795ef6b1e1719f6c35dd76e07c22fdb260c8..8ab1fcc4e48d108c2c394749b56b2b30a6683f08 100644 (file)
@@ -71,6 +71,12 @@ subsystem
 #include <mach/mach_types.defs>
 #include <mach_debug/mach_debug_types.defs>
 
 #include <mach/mach_types.defs>
 #include <mach_debug/mach_debug_types.defs>
 
+#if !KERNEL && !LIBSYSCALL_INTERFACE
+#define PREFIX(NAME) _kernelrpc_ ## NAME
+#else
+#define PREFIX(NAME) NAME
+#endif
+
 /*
  *      Returns information about the contents of the virtual
  *      address space of the target task at the specified
 /*
  *      Returns information about the contents of the virtual
  *      address space of the target task at the specified
@@ -99,21 +105,33 @@ routine vm_region(
  *     of the specified size.  The address at which the
  *     allocation actually took place is returned.
  */
  *     of the specified size.  The address at which the
  *     allocation actually took place is returned.
  */
-routine vm_allocate(
+
+#if !KERNEL && !LIBSYSCALL_INTERFACE
+skip;
+#else
+routine PREFIX(vm_allocate)(
                target_task     : vm_task_entry_t;
        inout   address         : vm_address_t;
                size            : vm_size_t;
                flags           : int);
 
                target_task     : vm_task_entry_t;
        inout   address         : vm_address_t;
                size            : vm_size_t;
                flags           : int);
 
+#endif
+
 /*
  *     Deallocate the specified range from the virtual
  *     address space of the target task.
  */
 /*
  *     Deallocate the specified range from the virtual
  *     address space of the target task.
  */
-routine vm_deallocate(
+
+#if !KERNEL && !LIBSYSCALL_INTERFACE
+skip;
+#else
+routine PREFIX(vm_deallocate)(
                target_task     : vm_task_entry_t;
                address         : vm_address_t;
                size            : vm_size_t);
 
                target_task     : vm_task_entry_t;
                address         : vm_address_t;
                size            : vm_size_t);
 
+#endif
+
 /*
  *     Set the current or maximum protection attribute
  *     for the specified range of the virtual address
 /*
  *     Set the current or maximum protection attribute
  *     for the specified range of the virtual address
@@ -124,12 +142,17 @@ routine vm_deallocate(
  *     Protections are specified as a set of {read, write, execute}
  *     *permissions*.
  */
  *     Protections are specified as a set of {read, write, execute}
  *     *permissions*.
  */
-routine vm_protect(
+
+#if !KERNEL && !LIBSYSCALL_INTERFACE
+skip;
+#else
+routine PREFIX(vm_protect)(
                target_task     : vm_task_entry_t;
                address         : vm_address_t;
                size            : vm_size_t;
                set_maximum     : boolean_t;
                new_protection  : vm_prot_t);
                target_task     : vm_task_entry_t;
                address         : vm_address_t;
                size            : vm_size_t;
                set_maximum     : boolean_t;
                new_protection  : vm_prot_t);
+#endif
 
 /*
  *     Set the inheritance attribute for the specified range
 
 /*
  *     Set the inheritance attribute for the specified range
@@ -151,7 +174,7 @@ routine vm_inherit(
  *     and must be a multiple of pages in extent.  The
  *     protection on the specified range must permit reading.]
  */
  *     and must be a multiple of pages in extent.  The
  *     protection on the specified range must permit reading.]
  */
-routine vm_read(
+routine PREFIX(vm_read) (
                target_task     : vm_map_t;
                address         : vm_address_t;
                size            : vm_size_t;
                target_task     : vm_map_t;
                address         : vm_address_t;
                size            : vm_size_t;
@@ -260,7 +283,7 @@ routine vm_behavior_set(
  *     The user-defined memory manager for this object is responsible
  *     for further consistency.]
  */
  *     The user-defined memory manager for this object is responsible
  *     for further consistency.]
  */
-routine vm_map(
+routine PREFIX(vm_map) (
                target_task     : vm_task_entry_t;
        inout   address         : vm_address_t;
                size            : vm_size_t;
                target_task     : vm_task_entry_t;
        inout   address         : vm_address_t;
                size            : vm_size_t;
@@ -288,7 +311,7 @@ routine vm_machine_attribute(
 /*
  *      Map portion of a task's address space.
  */
 /*
  *      Map portion of a task's address space.
  */
-routine vm_remap(
+routine PREFIX(vm_remap) (
                target_task     : vm_map_t;
        inout   target_address  : vm_address_t;
                size            : vm_size_t;
                target_task     : vm_map_t;
        inout   target_address  : vm_address_t;
                size            : vm_size_t;