1 <h2>processor_basic_info
</h2>
<hr>
<p>
<strong>Structure
</strong> - Defines the basic information about a processor.
<h3>SYNOPSIS
</h3>
<pre>
<strong>struct processor_basic_info
</strong>
<strong>{
</strong>
<strong>cpu_type_t
</strong> <var>cpu_type
</var><strong>;
</strong>
<strong>cpu_subtype_t
</strong> <var>cpu_subtype
</var><strong>;
</strong>
<strong>boolean_t
</strong> <var>running
</var><strong>;
</strong>
<strong>int
</strong> <var>slot_num
</var><strong>;
</strong>
<strong>boolean_t
</strong> <var>is_master
</var><strong>;
</strong>
<strong>};
</strong>
<strong>typedef struct processor_basic_info* processor_basic_info_t;
</strong>
</pre>
<h3>FIELDS
</h3>
<dl>
<dt> <var>cpu_type
</var>
<dd>
Type of CPU
<p>
<dt> <var>cpu_subtype
</var>
<dd>
Sub-type of CPU
<p>
<dt> <var>running
</var>
<dd>
True if the CPU is running
<p>
<dt> <var>slot_num
</var>
<dd>
Slot number of the CPU
<p>
<dt> <var>is_master
</var>
<dd>
True if this is the master processor
</dl>
<h3>DESCRIPTION
</h3>
<p>
The
<strong>processor_basic_info
</strong> structure defines the information
available about a processor slot.
<h3>RELATED INFORMATION
</h3>
<p>
Functions:
<a href=
"processor_info.html"><strong>processor_info
</strong></a>.