]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man2/getpagesize.2
pipe.2: Note that 'pipefd' is left unchanged in the event of an error
[thirdparty/man-pages.git] / man2 / getpagesize.2
1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH GETPAGESIZE 2 2017-09-15 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 getpagesize \- get memory page size
28 .SH SYNOPSIS
29 .B #include <unistd.h>
30 .PP
31 .B int getpagesize(void);
32 .PP
33 .in -4n
34 Feature Test Macro Requirements for glibc (see
35 .BR feature_test_macros (7)):
36 .in
37 .PP
38 .BR getpagesize ():
39 .ad l
40 .RS 4
41 .PD 0
42 .TP 4
43 Since glibc 2.19:
44 .nf
45 _DEFAULT_SOURCE || ! (_POSIX_C_SOURCE\ >=\ 200112L)
46 .TP 4
47 .fi
48 From glibc 2.12 to 2.19:
49 .nf
50 _BSD_SOURCE || ! (_POSIX_C_SOURCE\ >=\ 200112L)
51 .TP 4
52 .fi
53 Before glibc 2.12:
54 _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
55 .\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
56 .PD
57 .RE
58 .ad b
59 .SH DESCRIPTION
60 The function
61 .BR getpagesize ()
62 returns the number of bytes in a memory page,
63 where "page" is a fixed-length block,
64 the unit for memory allocation and file mapping performed by
65 .BR mmap (2).
66 .\" .SH HISTORY
67 .\" This call first appeared in 4.2BSD.
68 .SH CONFORMING TO
69 SVr4, 4.4BSD, SUSv2.
70 In SUSv2 the
71 .BR getpagesize ()
72 call is labeled LEGACY, and in POSIX.1-2001
73 it has been dropped;
74 HP-UX does not have this call.
75 .SH NOTES
76 Portable applications should employ
77 .I sysconf(_SC_PAGESIZE)
78 instead of
79 .BR getpagesize ():
80 .PP
81 .in +4n
82 .EX
83 #include <unistd.h>
84 long sz = sysconf(_SC_PAGESIZE);
85 .EE
86 .in
87 .PP
88 (Most systems allow the synonym
89 .B _SC_PAGE_SIZE
90 for
91 .BR _SC_PAGESIZE .)
92 .PP
93 Whether
94 .BR getpagesize ()
95 is present as a Linux system call depends on the architecture.
96 If it is, it returns the kernel symbol
97 .BR PAGE_SIZE ,
98 whose value depends on the architecture and machine model.
99 Generally, one uses binaries that are dependent on the architecture but not
100 on the machine model, in order to have a single binary
101 distribution per architecture.
102 This means that a user program
103 should not find
104 .B PAGE_SIZE
105 at compile time from a header file,
106 but use an actual system call, at least for those architectures
107 (like sun4) where this dependency exists.
108 Here glibc 2.0 fails because its
109 .BR getpagesize ()
110 returns a statically derived value, and does not use a system call.
111 Things are OK in glibc 2.1.
112 .SH SEE ALSO
113 .BR mmap (2),
114 .BR sysconf (3)