X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..2a1bd2d3eef5c7a7bb14f4bb9fdbca9a96ee4752:/osfmk/man/vm_copy.html diff --git a/osfmk/man/vm_copy.html b/osfmk/man/vm_copy.html old mode 100755 new mode 100644 index 21f579bed..ea4c926f1 --- a/osfmk/man/vm_copy.html +++ b/osfmk/man/vm_copy.html @@ -1 +1,72 @@ -
Function - Copy a region of virtual memory.
kern_return_t vm_copy (vm_task_t target_task, vm_address_t source_address, vm_size_t count, vm_address_t dest_address);
The vm_copy function copies a source region to a destination region within the same task's virtual memory. It is semantically equivalent to vm_read followed by vm_write. The destination region can overlap the source region.
The destination region must already be allocated. The source region must be readable, and the destination region must be writable.
This interface is machine word length specific because of the virtual address parameter.
Functions: vm_protect, vm_read, vm_write, host_page_size. \ No newline at end of file +
+Function - Copy a region of virtual memory. +
+kern_return_t vm_copy + (vm_task_t target_task, + vm_address_t source_address, + vm_size_t count, + vm_address_t dest_address); ++
+
+
+
+
+The vm_copy function copies a source region to a destination +region within the +same task's virtual memory. It is semantically equivalent to +vm_read followed +by vm_write. The destination region can overlap the source region. +
+The destination region must already be allocated. The source region must be +readable, and the destination region must be writable. +
+This interface is machine word length specific because of the virtual address +parameter. +
+
+
+Functions: +vm_protect, +vm_read, +vm_write, +host_page_size.