X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..316670eb35587141e969394ae8537d66b9211e80:/osfmk/man/norma_task_create.html diff --git a/osfmk/man/norma_task_create.html b/osfmk/man/norma_task_create.html index 09e57be8e..68158d866 100755 --- a/osfmk/man/norma_task_create.html +++ b/osfmk/man/norma_task_create.html @@ -1 +1,59 @@ -
Function - Create a remote task using task_create semantics.
kern_return_t norma_task_create (task_t parent_task, boolean_t inherit_memory, int child_node, task_t child_task);
The norma_task_create function creates a new task from parent_task on the specified node and returns the name of the new task in child_task. The child task acquires shared or copied parts of the parent's address space (see vm_inherit). The child task initially contains no threads.
By way of comparison, tasks created by the standard task_create primitive are created on the same node as the parent.
Other than being created on a different node, the new task has the same properties as if created by task_create.
Only generic errors apply.
Functions: task_create, norma_task_clone. \ No newline at end of file +
+Function - Create a remote task using task_create semantics. +
+kern_return_t norma_task_create + (task_t parent_task, + boolean_t inherit_memory, + int child_node, + task_t child_task); ++
+
+
+
+
+The norma_task_create function creates a new task from +parent_task on the specified node and returns the name of the +new task in child_task. The child +task acquires shared or copied parts of the parent's address space (see +vm_inherit). The child task initially contains no threads. +
+By way of comparison, tasks created by the standard task_create +primitive are created on the same node as the parent. +
+Other than being created on a different node, the new task has the same +properties as if created by task_create. +
+Only generic errors apply. +
+Functions: +task_create, +norma_task_clone.