X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..2d21ac55c334faf3a56e5634905ed6987fc787d4:/osfmk/man/thread_wire.html?ds=sidebyside diff --git a/osfmk/man/thread_wire.html b/osfmk/man/thread_wire.html index f52f7a984..740aaaf09 100755 --- a/osfmk/man/thread_wire.html +++ b/osfmk/man/thread_wire.html @@ -1 +1,53 @@ -
Function - Mark the thread as privileged with respect to kernel resources.
kern_return_t thread_wire (host_priv_t host_priv, thread_act_t thread, boolean_t wired);
The thread_wire function marks the thread as "wired". A "wired" thread is always eligible to be scheduled and can consume physical memory even when free memory is scarce. This property should be assigned to threads in the default page-out path. Threads not in the default page-out path should not have this property to prevent the kernel's free list of pages from being exhausted.
Functions: vm_wire. \ No newline at end of file +
+Function - Mark the thread as privileged with respect to kernel resources. +
+kern_return_t thread_wire + (host_priv_t host_priv, + thread_act_t thread, + boolean_t wired); ++
+
+
+
+The thread_wire function marks the thread as "wired". +A "wired" thread is +always eligible to be scheduled and can consume physical memory even when +free memory is scarce. This property should be assigned to threads in the +default page-out path. Threads not in the default page-out path +should not have +this property to prevent the kernel's free list of pages from being exhausted. +
+
+Functions: +vm_wire.