]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/man/task_set_policy.html
xnu-792.6.76.tar.gz
[apple/xnu.git] / osfmk / man / task_set_policy.html
index 8b4607689f9cc151f999ff2899cd2c83d4714ce2..35c063cf7011f7fa044ab9917018eaa21f1bd87e 100755 (executable)
@@ -1 +1,80 @@
-<h2>task_set_policy</h2>\r<hr>\r<p>\r<strong>Function</strong> - Set target task's default scheduling policy state. (Protected Interface.)\r<h3>SYNOPSIS</h3>\r<pre>\r<strong>kern_return_t   task_set_policy</strong>\r                <strong>(task_t</strong>                                    <var>task</var>,\r                 <strong>processor_set_t</strong>                  <var>processor_set</var>,\r                 <strong>policy_t</strong>                                <var>policy</var>,\r                 <strong>policy_base_t</strong>                             <var>base</var>,\r                 <strong>mach_msg_type_number_t</strong>              <var>base_count</var>,\r                 <strong>policy_limit_t</strong>                           <var>limit</var>,\r                 <strong>mach_msg_type_number_t</strong>             <var>limit_count</var>,\r                 <strong>boolean_t</strong>                       <var>change_threads</var><strong>);</strong>\r</pre>\r<h3>PARAMETERS</h3>\r<dl>\r<dt> <var>task</var> \r<dd>\r[in task send right]\rThe task whose scheduling policy is to be set.\r<dt> <var>processor_set</var> \r<dd>\r[in processor-set-control send right]\rThe control port for the processor \rset to which the task is currently assigned.\r<dt> <var>policy</var> \r<dd>\r[in scalar]\rPolicy to be set.  The values currently defined are <strong>POLICY_TIMESHARE</strong>, \r<strong>POLICY_RR</strong> (round robin) and <strong>POLICY_FIFO</strong> (firstin, first-out).\r<dt> <var>base</var> \r<dd>\r[pointer to in structure]\rBase policy specific data, <strong>policy_fifo_base</strong>, \r<strong>policy_rr_base</strong> or <strong>policy_timeshare_base</strong>.\r<dt> <var>base_count</var> \r<dd>\r[in scalar]\rThe size of the buffer (in natural-sized units).\r<dt> <var>limit</var> \r<dd>\r[pointer to in structure]\rPolicy specific limits, <strong>policy_fifo_limit</strong>,\r<strong>policy_rr_limit</strong> or <strong>policy_timeshare_limit</strong>.\r<dt> <var>limit_count</var> \r<dd>\r[in scalar]\rThe size of the buffer (in natural-sized units).\r<dt> <var>change_threads</var> \r<dd>\r[in scalar]\rTrue if the scheduling attributes for all contained threads \rshould be changed as well.\r</dl>\r<h3>DESCRIPTION</h3>\r<p>\rThe <strong>task_set_policy</strong> function sets the scheduling attributes,\rboth base and limit, for <var>task</var>. \r<var>policy</var> may be any policy implemented by the processor set whether or \rnot it is enabled.\r<h3>RETURN VALUES</h3>\r<dl>\r<dt> <strong>KERN_INVALID_PROCESSOR_SET</strong>\r<dd>\r<var>processor_set</var> is not the task's processor set control port.\r</dl>\r<h3>RELATED INFORMATION</h3>\r<p>\rFunctions:\r<a href="P_set_policy_control.html"><strong>processor_set_policy_control</strong></a>,\r<a href="thread_policy.html"><strong>thread_policy</strong></a>,\r<a href="thread_set_policy.html"><strong>thread_set_policy</strong></a>,\r<a href="task_policy.html"><strong>task_policy</strong></a>.\r<p>\rData Structures:\r<a href="policy_fifo_info.html"><strong>policy_fifo_info</strong></a>,\r<a href="policy_rr_info.html"><strong>policy_rr_info</strong></a>,\r<a href="policy_timeshare_info.html"><strong>policy_timeshare_info</strong></a>.\r
\ No newline at end of file
+<h2>task_set_policy</h2>
+<hr>
+<p>
+<strong>Function</strong> - Set target task's default scheduling policy state. (Protected Interface.)
+<h3>SYNOPSIS</h3>
+<pre>
+<strong>kern_return_t   task_set_policy</strong>
+                <strong>(task_t</strong>                                    <var>task</var>,
+                 <strong>processor_set_t</strong>                  <var>processor_set</var>,
+                 <strong>policy_t</strong>                                <var>policy</var>,
+                 <strong>policy_base_t</strong>                             <var>base</var>,
+                 <strong>mach_msg_type_number_t</strong>              <var>base_count</var>,
+                 <strong>policy_limit_t</strong>                           <var>limit</var>,
+                 <strong>mach_msg_type_number_t</strong>             <var>limit_count</var>,
+                 <strong>boolean_t</strong>                       <var>change_threads</var><strong>);</strong>
+</pre>
+<h3>PARAMETERS</h3>
+<dl>
+<dt> <var>task</var> 
+<dd>
+[in task send right]
+The task whose scheduling policy is to be set.
+<dt> <var>processor_set</var> 
+<dd>
+[in processor-set-control send right]
+The control port for the processor 
+set to which the task is currently assigned.
+<dt> <var>policy</var> 
+<dd>
+[in scalar]
+Policy to be set.  The values currently defined are <strong>POLICY_TIMESHARE</strong>, 
+<strong>POLICY_RR</strong> (round robin) and <strong>POLICY_FIFO</strong> (firstin, first-out).
+<dt> <var>base</var> 
+<dd>
+[pointer to in structure]
+Base policy specific data, <strong>policy_fifo_base</strong>, 
+<strong>policy_rr_base</strong> or <strong>policy_timeshare_base</strong>.
+<dt> <var>base_count</var> 
+<dd>
+[in scalar]
+The size of the buffer (in natural-sized units).
+<dt> <var>limit</var> 
+<dd>
+[pointer to in structure]
+Policy specific limits, <strong>policy_fifo_limit</strong>,
+<strong>policy_rr_limit</strong> or <strong>policy_timeshare_limit</strong>.
+<dt> <var>limit_count</var> 
+<dd>
+[in scalar]
+The size of the buffer (in natural-sized units).
+<dt> <var>change_threads</var> 
+<dd>
+[in scalar]
+True if the scheduling attributes for all contained threads 
+should be changed as well.
+</dl>
+<h3>DESCRIPTION</h3>
+<p>
+The <strong>task_set_policy</strong> function sets the scheduling attributes,
+both base and limit, for <var>task</var>. 
+<var>policy</var> may be any policy implemented by the processor set whether or 
+not it is enabled.
+<h3>RETURN VALUES</h3>
+<dl>
+<dt> <strong>KERN_INVALID_PROCESSOR_SET</strong>
+<dd>
+<var>processor_set</var> is not the task's processor set control port.
+</dl>
+<h3>RELATED INFORMATION</h3>
+<p>
+Functions:
+<a href="P_set_policy_control.html"><strong>processor_set_policy_control</strong></a>,
+<a href="thread_policy.html"><strong>thread_policy</strong></a>,
+<a href="thread_set_policy.html"><strong>thread_set_policy</strong></a>,
+<a href="task_policy.html"><strong>task_policy</strong></a>.
+<p>
+Data Structures:
+<a href="policy_fifo_info.html"><strong>policy_fifo_info</strong></a>,
+<a href="policy_rr_info.html"><strong>policy_rr_info</strong></a>,
+<a href="policy_timeshare_info.html"><strong>policy_timeshare_info</strong></a>.