1*e13b1fa5SApple OSS Distributions<h2>thread_create_running</h2>
2*e13b1fa5SApple OSS Distributions<hr>
3*e13b1fa5SApple OSS Distributions<p>
4*e13b1fa5SApple OSS Distributions<strong>Function</strong> - Optimized creation of a running thread.
5*e13b1fa5SApple OSS Distributions<h3>SYNOPSIS</h3>
6*e13b1fa5SApple OSS Distributions<pre>
7*e13b1fa5SApple OSS Distributions<strong>kern_return_t   thread_create_running</strong>
8*e13b1fa5SApple OSS Distributions                <strong>(task_t</strong>                             <var>parent_task</var>,
9*e13b1fa5SApple OSS Distributions                 <strong>thread_state_flavor_t</strong>                   <var>flavor</var>,
10*e13b1fa5SApple OSS Distributions                 <strong>thread_state_t</strong>                           <var>state</var>,
11*e13b1fa5SApple OSS Distributions                 <strong>thread_act_t</strong>                      <var>child_thread</var><strong>);</strong>
12*e13b1fa5SApple OSS Distributions</pre>
13*e13b1fa5SApple OSS Distributions<h3>PARAMETERS</h3>
14*e13b1fa5SApple OSS Distributions<dl>
15*e13b1fa5SApple OSS Distributions<p>
16*e13b1fa5SApple OSS Distributions<dt> <var>parent_task</var>
17*e13b1fa5SApple OSS Distributions<dd>
18*e13b1fa5SApple OSS Distributions[in task send right]
19*e13b1fa5SApple OSS DistributionsThe port for the task that is to contain the new
20*e13b1fa5SApple OSS Distributionsthread.
21*e13b1fa5SApple OSS Distributions<p>
22*e13b1fa5SApple OSS Distributions<dt> <var>flavor</var>
23*e13b1fa5SApple OSS Distributions<dd>
24*e13b1fa5SApple OSS Distributions[in scalar]
25*e13b1fa5SApple OSS DistributionsThe type of state to establish.  Valid values correspond to
26*e13b1fa5SApple OSS Distributionssupported machine architecture features.
27*e13b1fa5SApple OSS Distributions<p>
28*e13b1fa5SApple OSS Distributions<dt> <var>state</var>
29*e13b1fa5SApple OSS Distributions<dd>
30*e13b1fa5SApple OSS Distributions[pointer to in structure]
31*e13b1fa5SApple OSS DistributionsState information for the specified thread.
32*e13b1fa5SApple OSS Distributions<p>
33*e13b1fa5SApple OSS Distributions<dt> <var>child_thread</var>
34*e13b1fa5SApple OSS Distributions<dd>
35*e13b1fa5SApple OSS Distributions[out thread send right]
36*e13b1fa5SApple OSS DistributionsThe kernel-assigned name for the new thread.
37*e13b1fa5SApple OSS Distributions</dl>
38*e13b1fa5SApple OSS Distributions<h3>DESCRIPTION</h3>
39*e13b1fa5SApple OSS Distributions<p>
40*e13b1fa5SApple OSS DistributionsThe <strong>thread_create_running</strong> function creates a new thread
41*e13b1fa5SApple OSS Distributionswithin <var>parent_task</var>.
42*e13b1fa5SApple OSS DistributionsThe new thread has is not suspended.  Its initial state is given
43*e13b1fa5SApple OSS Distributionsby <var>state</var>.  <var>flavor</var> specifies the type of state to set.
44*e13b1fa5SApple OSS Distributions<p>
45*e13b1fa5SApple OSS DistributionsThe format of the state to set is machine specific; it is defined in
46*e13b1fa5SApple OSS Distributions\*L<mach/thread_status.h>\*O.
47*e13b1fa5SApple OSS Distributions<p>
48*e13b1fa5SApple OSS DistributionsThe new thread holds a send right for its thread kernel port.
49*e13b1fa5SApple OSS DistributionsA send right for the
50*e13b1fa5SApple OSS Distributionsthread's kernel port is also returned to the calling task or
51*e13b1fa5SApple OSS Distributionsthread in <var>child_thread</var>.
52*e13b1fa5SApple OSS DistributionsThe new thread's exception ports are set to <strong>MACH_PORT_NULL</strong>.
53*e13b1fa5SApple OSS Distributions<h3>NOTES</h3>
54*e13b1fa5SApple OSS Distributions<p>
55*e13b1fa5SApple OSS DistributionsThis is an optimized form of the sequence: <strong>thread_create</strong>,
56*e13b1fa5SApple OSS Distributions<strong>thread_set_state</strong>
57*e13b1fa5SApple OSS Distributionsand <strong>thread_resume</strong>.
58*e13b1fa5SApple OSS Distributions<h3>RETURN VALUES</h3>
59*e13b1fa5SApple OSS Distributions<p>
60*e13b1fa5SApple OSS DistributionsOnly generic errors apply.
61*e13b1fa5SApple OSS Distributions<h3>RELATED INFORMATION</h3>
62*e13b1fa5SApple OSS Distributions<p>
63*e13b1fa5SApple OSS DistributionsFunctions:
64*e13b1fa5SApple OSS Distributions<a href="task_create.html"><strong>task_create</strong></a>,
65*e13b1fa5SApple OSS Distributions<a href="task_threads.html"><strong>task_threads</strong></a>,
66*e13b1fa5SApple OSS Distributions<a href="thread_get_special_port.html"><strong>thread_get_special_port</strong></a>,
67*e13b1fa5SApple OSS Distributions<a href="thread_get_state.html"><strong>thread_get_state</strong></a>,
68*e13b1fa5SApple OSS Distributions<a href="thread_resume.html"><strong>thread_resume</strong></a>,
69*e13b1fa5SApple OSS Distributions<a href="thread_set_special_port.html"><strong>thread_set_special_port</strong></a>,
70*e13b1fa5SApple OSS Distributions<a href="thread_set_state.html"><strong>thread_set_state</strong></a>,
71*e13b1fa5SApple OSS Distributions<a href="thread_suspend.html"><strong>thread_suspend</strong></a>,
72*e13b1fa5SApple OSS Distributions<a href="thread_terminate.html"><strong>thread_terminate</strong></a>,
73*e13b1fa5SApple OSS Distributions<a href="thread_create.html"><strong>thread_create</strong></a>.
74