xref: /xnu-11215/osfmk/man/thread_set_state.html (revision 186b8fce)
1*e13b1fa5SApple OSS Distributions<h2>thread_set_state</h2>
2*e13b1fa5SApple OSS Distributions<hr>
3*e13b1fa5SApple OSS Distributions<p>
4*e13b1fa5SApple OSS Distributions<strong>Function</strong> - Set the target thread's user-mode execution state.
5*e13b1fa5SApple OSS Distributions<h3>SYNOPSIS</h3>
6*e13b1fa5SApple OSS Distributions<pre>
7*e13b1fa5SApple OSS Distributions<strong>kern_return_t   thread_set_state</strong>
8*e13b1fa5SApple OSS Distributions                <strong>(thread_act_t</strong>                     <var>target_thread</var>,
9*e13b1fa5SApple OSS Distributions                 <strong>thread_state_flavor_t</strong>                   <var>flavor</var>,
10*e13b1fa5SApple OSS Distributions                 <strong>thread_state_t</strong>                       <var>new_state</var>,
11*e13b1fa5SApple OSS Distributions                 <strong>target_thread</strong>                  <var>new_state_count</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>target_thread</var>
17*e13b1fa5SApple OSS Distributions<dd>
18*e13b1fa5SApple OSS Distributions[in thread send right]
19*e13b1fa5SApple OSS DistributionsThe thread for which to set the execution state.
20*e13b1fa5SApple OSS DistributionsThe calling thread cannot specify itself.
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 set.  Valid values correspond to
26*e13b1fa5SApple OSS Distributionssupported machine architecture features.
27*e13b1fa5SApple OSS Distributions<p>
28*e13b1fa5SApple OSS Distributions<dt> <var>new_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>new_state_count</var>
34*e13b1fa5SApple OSS Distributions<dd>
35*e13b1fa5SApple OSS Distributions[in scalar]
36*e13b1fa5SApple OSS DistributionsThe size of the buffer (in natural-sized units).
37*e13b1fa5SApple OSS Distributions</dl>
38*e13b1fa5SApple OSS Distributions<h3>DESCRIPTION</h3>
39*e13b1fa5SApple OSS Distributions<p>
40*e13b1fa5SApple OSS DistributionsThe <strong>thread_set_state</strong> function sets the execution state
41*e13b1fa5SApple OSS Distributions(for example, the
42*e13b1fa5SApple OSS Distributionsmachine registers) for <var>target_thread</var>.  <var>flavor</var> specifies the type
43*e13b1fa5SApple OSS Distributionsof 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<strong>mach/thread_status.h</strong>.
47*e13b1fa5SApple OSS Distributions<h3>RETURN VALUES</h3>
48*e13b1fa5SApple OSS Distributions<p>
49*e13b1fa5SApple OSS DistributionsOnly generic errors apply.
50*e13b1fa5SApple OSS Distributions<h3>RELATED INFORMATION</h3>
51*e13b1fa5SApple OSS Distributions<p>
52*e13b1fa5SApple OSS DistributionsFunctions:
53*e13b1fa5SApple OSS Distributions<a href="task_info.html"><strong>task_info</strong></a>,
54*e13b1fa5SApple OSS Distributions<a href="thread_get_state.html"><strong>thread_get_state</strong></a>,
55*e13b1fa5SApple OSS Distributions<a href="thread_info.html"><strong>thread_info</strong></a>.
56