xref: /xnu-8792.41.9/osfmk/man/processor_basic_info.html (revision 5c2921b07a2480ab43ec66f5b9e41cb872bc554f)
1*5c2921b0SApple OSS Distributions<h2>processor_basic_info</h2>
2*5c2921b0SApple OSS Distributions<hr>
3*5c2921b0SApple OSS Distributions<p>
4*5c2921b0SApple OSS Distributions<strong>Structure</strong> - Defines the basic information about a processor.
5*5c2921b0SApple OSS Distributions<h3>SYNOPSIS</h3>
6*5c2921b0SApple OSS Distributions<pre>
7*5c2921b0SApple OSS Distributions<strong>struct processor_basic_info</strong>
8*5c2921b0SApple OSS Distributions<strong>{</strong>
9*5c2921b0SApple OSS Distributions       <strong>cpu_type_t</strong>        <var>cpu_type</var><strong>;</strong>
10*5c2921b0SApple OSS Distributions       <strong>cpu_subtype_t</strong>  <var>cpu_subtype</var><strong>;</strong>
11*5c2921b0SApple OSS Distributions       <strong>boolean_t</strong>          <var>running</var><strong>;</strong>
12*5c2921b0SApple OSS Distributions       <strong>int</strong>               <var>slot_num</var><strong>;</strong>
13*5c2921b0SApple OSS Distributions       <strong>boolean_t</strong>        <var>is_master</var><strong>;</strong>
14*5c2921b0SApple OSS Distributions<strong>};</strong>
15*5c2921b0SApple OSS Distributions
16*5c2921b0SApple OSS Distributions<strong>typedef struct processor_basic_info* processor_basic_info_t;</strong>
17*5c2921b0SApple OSS Distributions</pre>
18*5c2921b0SApple OSS Distributions<h3>FIELDS</h3>
19*5c2921b0SApple OSS Distributions<dl>
20*5c2921b0SApple OSS Distributions<dt> <var>cpu_type</var>
21*5c2921b0SApple OSS Distributions<dd>
22*5c2921b0SApple OSS DistributionsType of CPU
23*5c2921b0SApple OSS Distributions<p>
24*5c2921b0SApple OSS Distributions<dt> <var>cpu_subtype</var>
25*5c2921b0SApple OSS Distributions<dd>
26*5c2921b0SApple OSS DistributionsSub-type of CPU
27*5c2921b0SApple OSS Distributions<p>
28*5c2921b0SApple OSS Distributions<dt> <var>running</var>
29*5c2921b0SApple OSS Distributions<dd>
30*5c2921b0SApple OSS DistributionsTrue if the CPU is running
31*5c2921b0SApple OSS Distributions<p>
32*5c2921b0SApple OSS Distributions<dt> <var>slot_num</var>
33*5c2921b0SApple OSS Distributions<dd>
34*5c2921b0SApple OSS DistributionsSlot number of the CPU
35*5c2921b0SApple OSS Distributions<p>
36*5c2921b0SApple OSS Distributions<dt> <var>is_master</var>
37*5c2921b0SApple OSS Distributions<dd>
38*5c2921b0SApple OSS DistributionsTrue if this is the master processor
39*5c2921b0SApple OSS Distributions</dl>
40*5c2921b0SApple OSS Distributions<h3>DESCRIPTION</h3>
41*5c2921b0SApple OSS Distributions<p>
42*5c2921b0SApple OSS DistributionsThe <strong>processor_basic_info</strong> structure defines the information
43*5c2921b0SApple OSS Distributionsavailable about a processor slot.
44*5c2921b0SApple OSS Distributions<h3>RELATED INFORMATION</h3>
45*5c2921b0SApple OSS Distributions<p>
46*5c2921b0SApple OSS DistributionsFunctions:
47*5c2921b0SApple OSS Distributions<a href="processor_info.html"><strong>processor_info</strong></a>.
48