xref: /xnu-10002.81.5/osfmk/man/host_basic_info.html (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions<h2>host_basic_info</h2>
2*5e3eaea3SApple OSS Distributions<hr>
3*5e3eaea3SApple OSS Distributions<p>
4*5e3eaea3SApple OSS Distributions<strong>Structure</strong> - Used to present basic information about a host.
5*5e3eaea3SApple OSS Distributions<h3>SYNOPSIS</h3>
6*5e3eaea3SApple OSS Distributions<pre>
7*5e3eaea3SApple OSS Distributions<strong>struct host_basic_info</strong>
8*5e3eaea3SApple OSS Distributions<strong>{</strong>
9*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>max_cpus</var><strong>;</strong>
10*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>avail_cpus</var><strong>;</strong>
11*5e3eaea3SApple OSS Distributions       <strong>vm_size_t</strong>            <var>memory_size</var><strong>;</strong>
12*5e3eaea3SApple OSS Distributions       <strong>cpu_type_t</strong>           <var>cpu_type</var><strong>;</strong>
13*5e3eaea3SApple OSS Distributions       <strong>cpu_subtype_t</strong>        <var>cpu_subtype</var><strong>;</strong>
14*5e3eaea3SApple OSS Distributions       <strong>cpu_threadtype_t</strong>     <var>cpu_threadtype</var><strong>;</strong>
15*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>physical_cpu</var><strong>;</strong>
16*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>physical_cpu_max</var><strong>;</strong>
17*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>logical_cpu</var><strong>;</strong>
18*5e3eaea3SApple OSS Distributions       <strong>integer_t</strong>            <var>logical_cpu_max</var><strong>;</strong>
19*5e3eaea3SApple OSS Distributions       <strong>uint64_t</strong>             <var>max_mem</var><strong>;</strong>
20*5e3eaea3SApple OSS Distributions<strong>};</strong>
21*5e3eaea3SApple OSS Distributions
22*5e3eaea3SApple OSS Distributions<strong>typedef struct host_basic_info* host_basic_info_t;</strong>
23*5e3eaea3SApple OSS Distributions</pre>
24*5e3eaea3SApple OSS Distributions<h3>FIELDS</h3>
25*5e3eaea3SApple OSS Distributions<dl>
26*5e3eaea3SApple OSS Distributions<dt> <var>max_cpus</var>
27*5e3eaea3SApple OSS Distributions<dd>
28*5e3eaea3SApple OSS DistributionsMaximum number of CPUs possible
29*5e3eaea3SApple OSS Distributions<p>
30*5e3eaea3SApple OSS Distributions<dt> <var>avail_cpus</var>
31*5e3eaea3SApple OSS Distributions<dd>
32*5e3eaea3SApple OSS DistributionsNumber of CPUs now available
33*5e3eaea3SApple OSS Distributions<p>
34*5e3eaea3SApple OSS Distributions<dt> <var>memory_size</var>
35*5e3eaea3SApple OSS Distributions<dd>
36*5e3eaea3SApple OSS DistributionsSize of memory in bytes, capped at 2 GB
37*5e3eaea3SApple OSS Distributions<p>
38*5e3eaea3SApple OSS Distributions<dt> <var>cpu_type</var>
39*5e3eaea3SApple OSS Distributions<dd>
40*5e3eaea3SApple OSS DistributionsCPU type
41*5e3eaea3SApple OSS Distributions<p>
42*5e3eaea3SApple OSS Distributions<dt> <var>cpu_subtype</var>
43*5e3eaea3SApple OSS Distributions<dd>
44*5e3eaea3SApple OSS DistributionsCPU sub-type
45*5e3eaea3SApple OSS Distributions<p>
46*5e3eaea3SApple OSS Distributions<dt> <var>cpu_threadtype</var>
47*5e3eaea3SApple OSS Distributions<dd>
48*5e3eaea3SApple OSS DistributionsCPU thread-type
49*5e3eaea3SApple OSS Distributions<p>
50*5e3eaea3SApple OSS Distributions<dt> <var>physical_cpu</var>
51*5e3eaea3SApple OSS Distributions<dd>
52*5e3eaea3SApple OSS DistributionsNumber of physical CPUs now available
53*5e3eaea3SApple OSS Distributions<p>
54*5e3eaea3SApple OSS Distributions<dt> <var>physical_cpu_max</var>
55*5e3eaea3SApple OSS Distributions<dd>
56*5e3eaea3SApple OSS DistributionsMaximum number of physical CPUs possible
57*5e3eaea3SApple OSS Distributions<p>
58*5e3eaea3SApple OSS Distributions<dt> <var>logical_cpu</var>
59*5e3eaea3SApple OSS Distributions<dd>
60*5e3eaea3SApple OSS DistributionsNumber of logical CPUs now available
61*5e3eaea3SApple OSS Distributions<p>
62*5e3eaea3SApple OSS Distributions<dt> <var>logical_cpu_max</var>
63*5e3eaea3SApple OSS Distributions<dd>
64*5e3eaea3SApple OSS DistributionsMaximum number of logical CPUs possible
65*5e3eaea3SApple OSS Distributions<p>
66*5e3eaea3SApple OSS Distributions<dt> <var>max_mem</var>
67*5e3eaea3SApple OSS Distributions<dd>
68*5e3eaea3SApple OSS DistributionsActual size of physical memory in bytes
69*5e3eaea3SApple OSS Distributions</dl>
70*5e3eaea3SApple OSS Distributions<h3>DESCRIPTION</h3>
71*5e3eaea3SApple OSS Distributions<p>
72*5e3eaea3SApple OSS DistributionsThe <strong>host_basic_info</strong> structure defines the basic information
73*5e3eaea3SApple OSS Distributionsavailable about a
74*5e3eaea3SApple OSS Distributionshost.
75*5e3eaea3SApple OSS Distributions<h3>NOTES</h3>
76*5e3eaea3SApple OSS Distributions<p>
77*5e3eaea3SApple OSS DistributionsThis structure is machine word length specific because of the memory size
78*5e3eaea3SApple OSS Distributionsreturned.
79*5e3eaea3SApple OSS Distributions<h3>RELATED INFORMATION</h3>
80*5e3eaea3SApple OSS Distributions<p>
81*5e3eaea3SApple OSS DistributionsFunctions:
82*5e3eaea3SApple OSS Distributions<a href="host_info.html"><strong>host_info</strong></a>.
83*5e3eaea3SApple OSS Distributions<p>
84*5e3eaea3SApple OSS DistributionsData Structures:
85*5e3eaea3SApple OSS Distributions<a href="host_load_info.html"><strong>host_load_info</strong></a>,
86*5e3eaea3SApple OSS Distributions<a href="host_sched_info.html"><strong>host_sched_info</strong></a>.
87