]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/getloadavg.3
membarrier.2: Remove redundant mention of return value of MEMBARRIER_CMD_SHARED
[thirdparty/man-pages.git] / man3 / getloadavg.3
CommitLineData
fea681da
MK
1.\" Copyright (c) 1989, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
491b7776 4.\" %%%LICENSE_START(BSD_3_CLAUSE_UCB)
fea681da
MK
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\" 3. Neither the name of the University nor the names of its contributors
14.\" may be used to endorse or promote products derived from this software
15.\" without specific prior written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27.\" SUCH DAMAGE.
8c9302dc 28.\" %%%LICENSE_END
fea681da
MK
29.\"
30.\" @(#)getloadavg.3 8.1 (Berkeley) 6/4/93
31.\"
352bedee 32.\" 2007-12-08, mtk, Converted from mdoc to man macros
3233d665 33.\"
fe0fefbf 34.TH GETLOADAVG 3 2015-03-02 "Linux" "Linux Programmer's Manual"
3233d665
MK
35.SH NAME
36getloadavg \- get system load averages
37.SH SYNOPSIS
38.nf
b80f966b 39.BR "#define _BSD_SOURCE" " /* See feature_test_macros(7) */"
3233d665
MK
40.B #include <stdlib.h>
41.sp
42.BI "int getloadavg(double " loadavg[] ", int " nelem );
43.fi
44.SH DESCRIPTION
fea681da 45The
3233d665 46.BR getloadavg ()
fea681da
MK
47function returns the number of processes in the system run queue
48averaged over various periods of time.
49Up to
3233d665 50.I nelem
fea681da 51samples are retrieved and assigned to successive elements of
3233d665 52.IR loadavg [].
fea681da
MK
53The system imposes a maximum of 3 samples, representing averages
54over the last 1, 5, and 15 minutes, respectively.
3233d665 55.SH RETURN VALUE
fea681da
MK
56If the load average was unobtainable, \-1 is returned; otherwise,
57the number of samples actually retrieved is returned.
3233d665 58.\" .SH HISTORY
bed8a6f2 59.\" The
3233d665 60.\" BR getloadavg ()
bed8a6f2 61.\" function appeared in
3233d665
MK
62.\" 4.3BSD Reno .
63.SH VERSIONS
b62a20b7 64This function is available in glibc since version 2.2.
28412482 65.SH ATTRIBUTES
f5d92a47
MK
66For an explanation of the terms used in this section, see
67.BR attributes (7).
68.TS
69allbox;
70lb lb lb
71l l l.
72Interface Attribute Value
73T{
28412482 74.BR getloadavg ()
f5d92a47
MK
75T} Thread safety MT-Safe
76.TE
47297adb 77.SH CONFORMING TO
0b6956ee 78Not in POSIX.1.
a7fadb55 79Present on the BSDs and Solaris.
08f75afe 80.\" mdoc seems to have a bug - there must be no newline here
3233d665
MK
81.SH SEE ALSO
82.BR uptime (1),
0a4f8b7b 83.BR proc (5)