forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost_load_info.html
47 lines (42 loc) · 1.34 KB
/
host_load_info.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<h2>host_load_info</h2>
<hr>
<p>
<strong>Structure</strong> - Used to present a host's processor load information.
<h3>SYNOPSIS</h3>
<pre>
<strong>#define CPU_STATE_USER 0</strong>
<strong>#define CPU_STATE_SYSTEM 1</strong>
<strong>#define CPU_STATE_IDLE 2</strong>
<strong>struct host_load_info</strong>
<strong>{</strong>
<strong>integer_t</strong> <var>avenrun</var><strong>[3];</strong>
<strong>integer_t</strong> <var>mach_factor</var><strong>[3];</strong>
<strong>};</strong>
<strong>typedef struct host_load_info* host_load_info_t;</strong>
</pre>
<h3>FIELDS</h3>
<dl>
<dt> <var>avenrun</var>
<dd>
load average--average number of runnable processes divided by
number of CPUs
<p>
<dt> <var>mach_factor</var>
<dd>
The processing resources available to a new thread--the number of
CPUs divided by (1 + the number of threads)
</dl>
<h3>DESCRIPTION</h3>
<p>
The <strong>host_load_info</strong> structure defines the loading information
available about a
host. The information returned is exponential averages over three periods of
time: 5, 30 and 60 seconds.
<h3>RELATED INFORMATION</h3>
<p>
Functions:
<a href="host_statistics.html"><strong>host_statistics</strong></a>.
<p>
Data Structures:
<a href="host_basic_info.html"><strong>host_basic_info</strong></a>,
<a href="host_sched_info.html"><strong>host_sched_info</strong></a>.