X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/743b15655a24ee3fe9f458f383003e011db0558f..13fec9890cf095cc781fdf7b8917cb03bf32dd4c:/osfmk/man/vm_write.html diff --git a/osfmk/man/vm_write.html b/osfmk/man/vm_write.html index 6fe7f28e8..e0cf66420 100755 --- a/osfmk/man/vm_write.html +++ b/osfmk/man/vm_write.html @@ -1 +1,68 @@ -
Function - Write data to the specified address in the target task's address space.
kern_return_t vm_write (vm_task_t target_task, vm_address_t address, pointer_t data, mach_msg_type_number_t data_count);
The vm_write function writes an array of data to a task's virtual memory. It allows one task to write to another task's memory.
The result of vm_write is as if target_task had directly written into the set of pages. Hence, target_task must have write permission to the pages.
This interface is machine word length specific because of the virtual address parameter.
Functions: vm_copy, vm_protect, vm_read, host_page_size. \ No newline at end of file +
+Function - Write data to the specified address in the target task's address space. +
+kern_return_t vm_write + (vm_task_t target_task, + vm_address_t address, + pointer_t data, + mach_msg_type_number_t data_count); ++
+
+
+
+
+The vm_write function writes an array of data to a +task's virtual memory. It +allows one task to write to another task's memory. +
+The result of vm_write is as if target_task had directly +written into the set of +pages. Hence, target_task must have write permission to the pages. +
+This interface is machine word length specific because of the virtual address +parameter. +
+
+
+Functions: +vm_copy, +vm_protect, +vm_read, +host_page_size.