Blame man3/get_phys_pages.3

Packit 7cfc04
.\" Copyright (c) 2015 William Woodruff (william@tuffbizz.com)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.TH GET_PHYS_PAGES 3  2017-09-15 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
get_phys_pages, get_avphys_pages \- get total and available physical
Packit 7cfc04
page counts
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B "#include <sys/sysinfo.h>"
Packit 7cfc04
.PP
Packit 7cfc04
.B long int get_phys_pages(void);
Packit 7cfc04
.B long int get_avphys_pages(void);
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The function
Packit 7cfc04
.BR get_phys_pages ()
Packit 7cfc04
returns the total number of physical pages of memory available on the system.
Packit 7cfc04
.PP
Packit 7cfc04
The function
Packit 7cfc04
.BR get_avphys_pages ()
Packit 7cfc04
returns the number of currently available physical pages of memory on the
Packit 7cfc04
system.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
On success,
Packit 7cfc04
these functions return a nonnegative value as given in DESCRIPTION.
Packit 7cfc04
On failure, they return \-1 and set
Packit 7cfc04
.I errno
Packit 7cfc04
to indicate the cause of the error.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
.TP
Packit 7cfc04
.B ENOSYS
Packit 7cfc04
The system could not provide the required information
Packit 7cfc04
(possibly because the
Packit 7cfc04
.I /proc
Packit 7cfc04
filesystem was not mounted).
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
These functions are GNU extensions.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
These functions obtain the required information by scanning the
Packit 7cfc04
.I MemTotal
Packit 7cfc04
and
Packit 7cfc04
.I MemFree
Packit 7cfc04
fields of
Packit 7cfc04
.IR /proc/meminfo .
Packit 7cfc04
.PP
Packit 7cfc04
The following
Packit 7cfc04
.BR sysconf (3)
Packit 7cfc04
calls provide a portable means of obtaining the same information as the
Packit 7cfc04
functions described on this page.
Packit 7cfc04
.PP
Packit 7cfc04
.in +4n
Packit 7cfc04
.EX
Packit 7cfc04
total_pages = sysconf(_SC_PHYS_PAGES);    /* total pages */
Packit 7cfc04
avl_pages = sysconf(_SC_AVPHYS_PAGES);    /* available pages */
Packit 7cfc04
.EE
Packit 7cfc04
.in
Packit 7cfc04
.SH EXAMPLE
Packit 7cfc04
The following example shows how
Packit 7cfc04
.BR get_phys_pages ()
Packit 7cfc04
and
Packit 7cfc04
.BR get_avphys_pages ()
Packit 7cfc04
can be used.
Packit 7cfc04
.PP
Packit 7cfc04
.EX
Packit 7cfc04
#include <stdio.h>
Packit 7cfc04
#include <stdlib.h>
Packit 7cfc04
#include <sys/sysinfo.h>
Packit 7cfc04
Packit 7cfc04
int
Packit 7cfc04
main(int argc, char *argv[])
Packit 7cfc04
{
Packit 7cfc04
    printf("This system has %ld pages of physical memory and "
Packit 7cfc04
            "%ld pages of physical memory available.\\n",
Packit 7cfc04
            get_phys_pages(), get_avphys_pages());
Packit 7cfc04
    exit(EXIT_SUCCESS);
Packit 7cfc04
}
Packit 7cfc04
.EE
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR sysconf (3)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.