xref: /xnu-10063.121.3/osfmk/man/task_create.html (revision 2c2f96dc2b9a4408a43d3150ae9c105355ca3daa)
1*2c2f96dcSApple OSS Distributions<h2>task_create</h2>
2*2c2f96dcSApple OSS Distributions<hr>
3*2c2f96dcSApple OSS Distributions<p>
4*2c2f96dcSApple OSS Distributions<strong>Function</strong> - Create a new task.
5*2c2f96dcSApple OSS Distributions<h3>SYNOPSIS</h3>
6*2c2f96dcSApple OSS Distributions<pre>
7*2c2f96dcSApple OSS Distributions<strong>kern_return_t   task_create</strong>
8*2c2f96dcSApple OSS Distributions                <strong>(task_t</strong>                             <var>parent_task</var>,
9*2c2f96dcSApple OSS Distributions                 <strong>ledger_port_array_t</strong>                    <var>ledgers</var>,
10*2c2f96dcSApple OSS Distributions                 <strong>int</strong>                               <var>ledger_count</var>,
11*2c2f96dcSApple OSS Distributions                 <strong>boolean_t</strong>                       <var>inherit_memory</var>,
12*2c2f96dcSApple OSS Distributions                 <strong>task_t</strong>                              <var>child_task</var><strong>);</strong>
13*2c2f96dcSApple OSS Distributions</pre>
14*2c2f96dcSApple OSS Distributions<h3>PARAMETERS</h3>
15*2c2f96dcSApple OSS Distributions<dl>
16*2c2f96dcSApple OSS Distributions<p>
17*2c2f96dcSApple OSS Distributions<dt> <var>parent_task</var>
18*2c2f96dcSApple OSS Distributions<dd>
19*2c2f96dcSApple OSS Distributions[in task send right]
20*2c2f96dcSApple OSS DistributionsThe port for the task from which to draw the child
21*2c2f96dcSApple OSS Distributionstask's port rights and address space.
22*2c2f96dcSApple OSS Distributions<p>
23*2c2f96dcSApple OSS Distributions<dt> <var>ledgers</var>
24*2c2f96dcSApple OSS Distributions<dd>
25*2c2f96dcSApple OSS Distributions[pointer to in array of ledger send rights]
26*2c2f96dcSApple OSS DistributionsResource ledgers (on the
27*2c2f96dcSApple OSS Distributionsdestination host) from which the task will draw its resources.  The first
28*2c2f96dcSApple OSS Distributionselement of this array is the wired kernel ledger, the second the paged
29*2c2f96dcSApple OSS Distributionsspace ledger.  If the number of ledgers supplied does not match the
30*2c2f96dcSApple OSS Distributionsrequired number or one or more is null, the parent task's ledger is used.
31*2c2f96dcSApple OSS Distributions<p>
32*2c2f96dcSApple OSS Distributions<dt> <var>ledger_count</var>
33*2c2f96dcSApple OSS Distributions<dd>
34*2c2f96dcSApple OSS Distributions[in scalar]
35*2c2f96dcSApple OSS DistributionsThe number of ledger ports in the <var>ledgers</var> array.
36*2c2f96dcSApple OSS Distributions<p>
37*2c2f96dcSApple OSS Distributions<dt> <var>inherit_memory</var>
38*2c2f96dcSApple OSS Distributions<dd>
39*2c2f96dcSApple OSS Distributions[in scalar]
40*2c2f96dcSApple OSS DistributionsAddress space inheritance indicator.  If true, the child task
41*2c2f96dcSApple OSS Distributionsinherits the (inheritable) address space of the parent task.  If false, the
42*2c2f96dcSApple OSS Distributionskernel assigns the child task an empty address space.
43*2c2f96dcSApple OSS Distributions<p>
44*2c2f96dcSApple OSS Distributions<dt> <var>child_task</var>
45*2c2f96dcSApple OSS Distributions<dd>
46*2c2f96dcSApple OSS Distributions[out task send right]
47*2c2f96dcSApple OSS DistributionsThe kernel-assigned port for the new task.
48*2c2f96dcSApple OSS Distributions</dl>
49*2c2f96dcSApple OSS Distributions<h3>DESCRIPTION</h3>
50*2c2f96dcSApple OSS Distributions<p>
51*2c2f96dcSApple OSS DistributionsThe <strong>task_create</strong> function creates a new task from <var>parent_task</var>
52*2c2f96dcSApple OSS Distributionsand returns the name of the new task in <var>child_task</var>.
53*2c2f96dcSApple OSS DistributionsThe child task acquires shared or copied parts of the parent's address space
54*2c2f96dcSApple OSS Distributions(see <strong>vm_inherit</strong>).  The child task initially
55*2c2f96dcSApple OSS Distributionscontains no threads.  The child task inherits the parent's security ID.
56*2c2f96dcSApple OSS Distributions<p>
57*2c2f96dcSApple OSS DistributionsThe child task receives the following "special" ports, which are created or
58*2c2f96dcSApple OSS Distributionscopied for it at task creation:
59*2c2f96dcSApple OSS Distributions<dl>
60*2c2f96dcSApple OSS Distributions<dt> [task-self send right]
61*2c2f96dcSApple OSS Distributions<dd>
62*2c2f96dcSApple OSS DistributionsThe port by which the kernel knows the new child task
63*2c2f96dcSApple OSS Distributionsand allows it to be manipulated.  The child task holds a send right for this
64*2c2f96dcSApple OSS Distributionsport.  The port name is also returned to the calling task.
65*2c2f96dcSApple OSS Distributions<p>
66*2c2f96dcSApple OSS Distributions<dt> [bootstrap send right]
67*2c2f96dcSApple OSS Distributions<dd>
68*2c2f96dcSApple OSS DistributionsThe port to which the child task can send a message
69*2c2f96dcSApple OSS Distributionsrequesting return of any system service ports that it needs (for
70*2c2f96dcSApple OSS Distributionsexample, a port
71*2c2f96dcSApple OSS Distributionsto the Network Name Server or the Environment Manager).  The child task
72*2c2f96dcSApple OSS Distributionsinherits a send right for this port from the parent task.  The task can use
73*2c2f96dcSApple OSS Distributions<strong>task_set_special_port</strong> to change this port.
74*2c2f96dcSApple OSS Distributions<p>
75*2c2f96dcSApple OSS Distributions<dt> [host-self send right]
76*2c2f96dcSApple OSS Distributions<dd>
77*2c2f96dcSApple OSS DistributionsThe port by which the child task requests information
78*2c2f96dcSApple OSS Distributionsabout its host.  The child task inherits a send right for this port from the
79*2c2f96dcSApple OSS Distributionsparent task.
80*2c2f96dcSApple OSS Distributions<p>
81*2c2f96dcSApple OSS Distributions<dt> [ledger send rights]
82*2c2f96dcSApple OSS Distributions<dd>
83*2c2f96dcSApple OSS DistributionsThe ports naming the ledgers from which the task draws
84*2c2f96dcSApple OSS Distributionsits resources.
85*2c2f96dcSApple OSS Distributions</dl>
86*2c2f96dcSApple OSS Distributions<p>
87*2c2f96dcSApple OSS DistributionsThe child task also inherits the following ports:
88*2c2f96dcSApple OSS Distributions<dl>
89*2c2f96dcSApple OSS Distributions<dt> [sample send right]
90*2c2f96dcSApple OSS Distributions<dd>
91*2c2f96dcSApple OSS DistributionsThe port to which PC sampling messages are to be sent.
92*2c2f96dcSApple OSS Distributions<p>
93*2c2f96dcSApple OSS Distributions<dt> [exception send rights]
94*2c2f96dcSApple OSS Distributions<dd>
95*2c2f96dcSApple OSS DistributionsPorts to which exception messages are sent.
96*2c2f96dcSApple OSS Distributions<p>
97*2c2f96dcSApple OSS Distributions<dt> [registered send rights]
98*2c2f96dcSApple OSS Distributions<dd>
99*2c2f96dcSApple OSS DistributionsPorts to system services.
100*2c2f96dcSApple OSS Distributions</dl>
101*2c2f96dcSApple OSS Distributions<h3>NOTES</h3>
102*2c2f96dcSApple OSS Distributions<p>
103*2c2f96dcSApple OSS DistributionsThe <strong>ledgers</strong> functionality mentioned above is not
104*2c2f96dcSApple OSS Distributionscurrently implemented.
105*2c2f96dcSApple OSS Distributions<h3>RETURN VALUES</h3>
106*2c2f96dcSApple OSS Distributions<p>
107*2c2f96dcSApple OSS DistributionsOnly generic errors apply.
108*2c2f96dcSApple OSS Distributions<h3>RELATED INFORMATION</h3>
109*2c2f96dcSApple OSS Distributions<p>
110*2c2f96dcSApple OSS DistributionsFunctions:
111*2c2f96dcSApple OSS Distributions<a href="task_create_security_token.html"><strong>task_create_security_token</strong></a>,
112*2c2f96dcSApple OSS Distributions<a href="task_resume.html"><strong>task_resume</strong></a>,
113*2c2f96dcSApple OSS Distributions<a href="task_set_special_port.html"><strong>task_set_special_port</strong></a>,
114*2c2f96dcSApple OSS Distributions<a href="task_suspend.html"><strong>task_suspend</strong></a>,
115*2c2f96dcSApple OSS Distributions<a href="task_terminate.html"><strong>task_terminate</strong></a>,
116*2c2f96dcSApple OSS Distributions<a href="task_threads.html"><strong>task_threads</strong></a>,
117*2c2f96dcSApple OSS Distributions<a href="thread_create.html"><strong>thread_create</strong></a>,
118*2c2f96dcSApple OSS Distributions<a href="thread_resume.html"><strong>thread_resume</strong></a>,
119*2c2f96dcSApple OSS Distributions<a href="vm_inherit.html"><strong>vm_inherit</strong></a>,
120*2c2f96dcSApple OSS Distributions<a href="task_sample.html"><strong>task_sample</strong></a>,
121*2c2f96dcSApple OSS Distributions<a href="task_set_exception_ports.html"><strong>task_set_exception_ports</strong></a>,
122*2c2f96dcSApple OSS Distributions<a href="mach_ports_register.html"><strong>mach_ports_register</strong></a>,
123*2c2f96dcSApple OSS Distributions<a href="host_security_set_task_token.html"><strong>host_security_set_task_token</strong></a>.
124