xref: /xnu-12377.41.6/osfmk/man/task_assign_default.html (revision bbb1b6f9e71b8cdde6e5cd6f4841f207dee3d828)
1*bbb1b6f9SApple OSS Distributions<h2>task_assign_default</h2>
2*bbb1b6f9SApple OSS Distributions<hr>
3*bbb1b6f9SApple OSS Distributions<p>
4*bbb1b6f9SApple OSS Distributions<strong>Function</strong> - Assign a task to the default processor set.
5*bbb1b6f9SApple OSS Distributions<h3>SYNOPSIS</h3>
6*bbb1b6f9SApple OSS Distributions<pre>
7*bbb1b6f9SApple OSS Distributions<strong>kern_return_t   task_assign_default</strong>
8*bbb1b6f9SApple OSS Distributions                <strong>(task_t</strong>                                    <var>task</var>,
9*bbb1b6f9SApple OSS Distributions                 <strong>boolean_t</strong>                       <var>assign_threads</var><strong>);</strong>
10*bbb1b6f9SApple OSS Distributions</pre>
11*bbb1b6f9SApple OSS Distributions<h3>PARAMETERS</h3>
12*bbb1b6f9SApple OSS Distributions<dl>
13*bbb1b6f9SApple OSS Distributions<dt> <var>task</var>
14*bbb1b6f9SApple OSS Distributions<dd>
15*bbb1b6f9SApple OSS Distributions[in task send right]
16*bbb1b6f9SApple OSS DistributionsThe port for the task to be assigned.
17*bbb1b6f9SApple OSS Distributions<dt> <var>assign_threads</var>
18*bbb1b6f9SApple OSS Distributions<dd>
19*bbb1b6f9SApple OSS Distributions[in scalar]
20*bbb1b6f9SApple OSS DistributionsTrue if this assignment should apply as well to the threads
21*bbb1b6f9SApple OSS Distributionswithin the task.
22*bbb1b6f9SApple OSS Distributions</dl>
23*bbb1b6f9SApple OSS Distributions<h3>DESCRIPTION</h3>
24*bbb1b6f9SApple OSS Distributions<p>
25*bbb1b6f9SApple OSS DistributionsThe <strong>task_assign_default</strong> function assigns <var>task</var> to the
26*bbb1b6f9SApple OSS Distributionsdefault processor set.
27*bbb1b6f9SApple OSS DistributionsAfter the assignment is completed, newly created threads within
28*bbb1b6f9SApple OSS Distributionsthis task will be
29*bbb1b6f9SApple OSS Distributionsassigned to this processor set.  Any previous assignment of the
30*bbb1b6f9SApple OSS Distributionstask is nullified.
31*bbb1b6f9SApple OSS Distributions<p>
32*bbb1b6f9SApple OSS DistributionsIf <var>assign_threads</var> is <strong>TRUE</strong>, existing threads within the
33*bbb1b6f9SApple OSS Distributionstask will also be assigned to the processor set.
34*bbb1b6f9SApple OSS Distributions<h3>NOTES</h3>
35*bbb1b6f9SApple OSS Distributions<p>
36*bbb1b6f9SApple OSS DistributionsThis variant of <strong>task_assign</strong> exists because the control
37*bbb1b6f9SApple OSS Distributionsport for the default
38*bbb1b6f9SApple OSS Distributionsprocessor set is privileged, and therefore not available to most tasks.
39*bbb1b6f9SApple OSS Distributions<h3>RETURN VALUES</h3>
40*bbb1b6f9SApple OSS Distributions<p>
41*bbb1b6f9SApple OSS DistributionsOnly generic errors apply.
42*bbb1b6f9SApple OSS Distributions<h3>RELATED INFORMATION</h3>
43*bbb1b6f9SApple OSS Distributions<p>
44*bbb1b6f9SApple OSS DistributionsFunctions:
45*bbb1b6f9SApple OSS Distributions<a href="task_assign.html"><strong>task_assign</strong></a>,
46*bbb1b6f9SApple OSS Distributions<a href="task_get_assignment.html"><strong>task_get_assignment</strong></a>,
47*bbb1b6f9SApple OSS Distributions<a href="processor_set_create.html"><strong>processor_set_create</strong></a>,
48*bbb1b6f9SApple OSS Distributions<a href="processor_set_info.html"><strong>processor_set_info</strong></a>,
49*bbb1b6f9SApple OSS Distributions<a href="thread_assign.html"><strong>thread_assign</strong></a>.
50