OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man2 / brk.2
1 .\" Copyright (c) 1993 Michael Haardt
2 .\" (michael@moria.de),
3 .\" Fri Apr  2 11:32:09 MET DST 1993
4 .\"
5 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
6 .\" This is free documentation; you can redistribute it and/or
7 .\" modify it under the terms of the GNU General Public License as
8 .\" published by the Free Software Foundation; either version 2 of
9 .\" the License, or (at your option) any later version.
10 .\"
11 .\" The GNU General Public License's references to "object code"
12 .\" and "executables" are to be interpreted as the output of any
13 .\" document formatting or typesetting system, including
14 .\" intermediate and printed output.
15 .\"
16 .\" This manual is distributed in the hope that it will be useful,
17 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
18 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 .\" GNU General Public License for more details.
20 .\"
21 .\" You should have received a copy of the GNU General Public
22 .\" License along with this manual; if not, see
23 .\" <http://www.gnu.org/licenses/>.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Modified Wed Jul 21 19:52:58 1993 by Rik Faith <faith@cs.unc.edu>
27 .\" Modified Sun Aug 21 17:40:38 1994 by Rik Faith <faith@cs.unc.edu>
28 .\"
29 .TH BRK 2 2010-09-20 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 brk, sbrk \- change data segment size
32 .SH SYNOPSIS
33 .B #include <unistd.h>
34 .sp
35 .BI "int brk(void *" addr );
36 .sp
37 .BI "void *sbrk(intptr_t " increment );
38 .sp
39 .in -4n
40 Feature Test Macro Requirements for glibc (see
41 .BR feature_test_macros (7)):
42 .in
43 .sp
44 .BR brk (),
45 .BR sbrk ():
46 .ad l
47 .RS 4
48 .PD 0
49 .TP 4
50 Since glibc 2.12:
51 .nf
52 _BSD_SOURCE || _SVID_SOURCE ||
53     (_XOPEN_SOURCE\ >=\ 500 ||
54         _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED) &&
55     !(_POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600)
56 .TP 4
57 .fi
58 Before glibc 2.12:
59 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 ||
60 _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
61 .PD
62 .RE
63 .ad b
64 .SH DESCRIPTION
65 .BR brk ()
66 and
67 .BR sbrk ()
68 change the location of the
69 .IR "program break" ,
70 which defines the end of the process's data segment
71 (i.e., the program break is the first location after the end of the
72 uninitialized data segment).
73 Increasing the program break has the effect of
74 allocating memory to the process;
75 decreasing the break deallocates memory.
76
77 .BR brk ()
78 sets the end of the data segment to the value specified by
79 .IR addr ,
80 when that value is reasonable, the system has enough memory,
81 and the process does not exceed its maximum data size (see
82 .BR setrlimit (2)).
83
84 .BR sbrk ()
85 increments the program's data space by
86 .I increment
87 bytes.
88 Calling
89 .BR sbrk ()
90 with an
91 .I increment
92 of 0 can be used to find the current location of the program break.
93 .SH RETURN VALUE
94 On success,
95 .BR brk ()
96 returns zero.
97 On error, \-1 is returned, and
98 .I errno
99 is set to
100 .BR ENOMEM .
101 (But see \fILinux Notes\fP below.)
102
103 On success,
104 .BR sbrk ()
105 returns the previous program break.
106 (If the break was increased,
107 then this value is a pointer to the start of the newly allocated memory).
108 On error,
109 .I "(void\ *)\ \-1"
110 is returned, and
111 .I errno
112 is set to
113 .BR ENOMEM .
114 .SH CONFORMING TO
115 4.3BSD; SUSv1, marked LEGACY in SUSv2, removed in POSIX.1-2001.
116 .\"
117 .\" .BR brk ()
118 .\" and
119 .\" .BR sbrk ()
120 .\" are not defined in the C Standard and are deliberately excluded from the
121 .\" POSIX.1-1990 standard (see paragraphs B.1.1.1.3 and B.8.3.3).
122 .SH NOTES
123 Avoid using
124 .BR brk ()
125 and
126 .BR sbrk ():
127 the
128 .BR malloc (3)
129 memory allocation package is the
130 portable and comfortable way of allocating memory.
131
132 Various systems use various types for the argument of
133 .BR sbrk ().
134 Common are \fIint\fP, \fIssize_t\fP, \fIptrdiff_t\fP, \fIintptr_t\fP.
135 .\" One sees
136 .\" \fIint\fP (e.g., XPGv4, DU 4.0, HP-UX 11, FreeBSD 4.0, OpenBSD 3.2),
137 .\" \fIssize_t\fP (OSF1 2.0, Irix 5.3, 6.5),
138 .\" \fIptrdiff_t\fP (libc4, libc5, ulibc, glibc 2.0, 2.1),
139 .\" \fIintptr_t\fP (e.g., XPGv5, AIX, SunOS 5.8, 5.9, FreeBSD 4.7, NetBSD 1.6,
140 .\" Tru64 5.1, glibc2.2).
141 .SS Linux notes
142 The return value described above for
143 .BR brk ()
144 is the behavior provided by the glibc wrapper function for the Linux
145 .BR brk ()
146 system call.
147 (On most other implementations, the return value from
148 .BR brk ()
149 is the same; this return value was also specified in SUSv2.)
150 However,
151 the actual Linux system call returns the new program break on success.
152 On failure, the system call returns the current break.
153 The glibc wrapper function does some work
154 (i.e., checks whether the new break is less than
155 .IR addr )
156 to provide the 0 and \-1 return values described above.
157
158 On Linux,
159 .BR sbrk ()
160 is implemented as a library function that uses the
161 .BR brk ()
162 system call, and does some internal bookkeeping so that it can
163 return the old break value.
164 .SH SEE ALSO
165 .BR execve (2),
166 .BR getrlimit (2),
167 .BR end (3),
168 .BR malloc (3)
169 .SH COLOPHON
170 This page is part of release 3.68 of the Linux
171 .I man-pages
172 project.
173 A description of the project,
174 information about reporting bugs,
175 and the latest version of this page,
176 can be found at
177 \%http://www.kernel.org/doc/man\-pages/.