xref: /xnu-10002.81.5/osfmk/man/etap_trace_thread.html (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions<h2>etap_trace_thread</h2>
2*5e3eaea3SApple OSS Distributions<hr>
3*5e3eaea3SApple OSS Distributions<p>
4*5e3eaea3SApple OSS Distributions<strong>Function</strong> - Set a thread's ETAP trace status.
5*5e3eaea3SApple OSS Distributions<h3>SYNOPSIS</h3>
6*5e3eaea3SApple OSS Distributions<pre>
7*5e3eaea3SApple OSS Distributions<strong>#include&ltmach/etap.h&gt</strong>
8*5e3eaea3SApple OSS Distributions
9*5e3eaea3SApple OSS Distributions<strong>kern_return_t   etap_trace_thread</strong>
10*5e3eaea3SApple OSS Distributions                <strong>(thread_act_t</strong>                     <var>target_thread</var>,
11*5e3eaea3SApple OSS Distributions                 <strong>boolean_t</strong>                               <var>active</var><strong>);</strong>
12*5e3eaea3SApple OSS Distributions</pre>
13*5e3eaea3SApple OSS Distributions<h3>PARAMETERS</h3>
14*5e3eaea3SApple OSS Distributions<dl>
15*5e3eaea3SApple OSS Distributions<p>
16*5e3eaea3SApple OSS Distributions<dt> <var>target_thread</var>
17*5e3eaea3SApple OSS Distributions<dd>
18*5e3eaea3SApple OSS DistributionsThe port of the thread who's ETAP trace status will be toggled.
19*5e3eaea3SApple OSS Distributions<p>
20*5e3eaea3SApple OSS Distributions<dt> <var>active</var>
21*5e3eaea3SApple OSS Distributions<dd>
22*5e3eaea3SApple OSS DistributionsThe boolean value (either TRUE or FALSE) stating whether the thread's
23*5e3eaea3SApple OSS DistributionsETAP trace status will be activated or not. Passing TRUE will enable
24*5e3eaea3SApple OSS Distributionsthe thread's trace status and FALSE will deactivate it.
25*5e3eaea3SApple OSS Distributions</dl>
26*5e3eaea3SApple OSS Distributions<h3>DESCRIPTION</h3>
27*5e3eaea3SApple OSS Distributions<p>
28*5e3eaea3SApple OSS DistributionsThe <strong>etap_trace_thread</strong> system call is used to
29*5e3eaea3SApple OSS Distributionstoggle the ETAP trace status of a thread.
30*5e3eaea3SApple OSS Distributions<h3>RETURN VALUES</h3>
31*5e3eaea3SApple OSS Distributions<dl>
32*5e3eaea3SApple OSS Distributions  <dt> <strong>KERN_SUCCESS</strong>
33*5e3eaea3SApple OSS Distributions       <dd>
34*5e3eaea3SApple OSS Distributions	    The call was performed successfully.
35*5e3eaea3SApple OSS Distributions<p>
36*5e3eaea3SApple OSS Distributions  <dt> <strong>KERN_INVALID_ARGUMENT</strong>
37*5e3eaea3SApple OSS Distributions       <dd>
38*5e3eaea3SApple OSS Distributions	    The value of <var>target_thread</var> does not name a valid thread.
39*5e3eaea3SApple OSS Distributions<p>
40*5e3eaea3SApple OSS Distributions  <dt> <strong>KERN_FAILURE</strong>
41*5e3eaea3SApple OSS Distributions       <dd>
42*5e3eaea3SApple OSS Distributions	    ETAP is not configured in the kernel.
43*5e3eaea3SApple OSS Distributions</dl>
44*5e3eaea3SApple OSS Distributions<h3>RELATED INFORMATION</h3>
45*5e3eaea3SApple OSS Distributions<p>
46*5e3eaea3SApple OSS DistributionsFunctions:
47*5e3eaea3SApple OSS Distributions<a href="etap_probe.html"><strong>etap_probe</strong></a>,
48*5e3eaea3SApple OSS Distributions<a href="etap_trace_event.html"><strong>etap_trace_event</strong></a>,
49*5e3eaea3SApple OSS Distributions<a href="etap_get_info.html"><strong>etap_get_info</strong></a>.
50