Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

execve(2)

mmap(2)

getrlimit(2)

malloc(3)

end(3)

BRK(2)  —  SYSTEM CALLS

NAME

brk, sbrk − change data segment size

SYNOPSIS

#include <sys/types.h>

int brk(addr)
caddr_t addr;

caddr_t sbrk(incr)
int incr;

DESCRIPTION

brk() sets the system’s idea of the lowest data segment location not used by the program (called the break) to addr (rounded up to the next multiple of the system’s page size). 

In the alternate function sbrk(), incr more bytes are added to the program’s data space and a pointer to the start of the new area is returned. 

When a program begins execution using execve() the break is set at the highest location defined by the program and data storage areas. 

The getrlimit(2) system call may be used to determine the maximum permissible size of the data segment; it will not be possible to set the break beyond the rlim_max value returned from a call to getrlimit(), that is to say, “etext + rlim.rlim_max.” (See end(3) for the definition of etext.) 

RETURN VALUE

brk() returns 0 on success, while sbrk() returns the old break value.  If the break cannot be set, brk() returns −1; sbrk() returns (caddr_t) −1 on error. 

ERRORS

brk() and sbrk() will fail and no additional memory will be allocated if one of the following are true:

ENOMEM The data segment size limit, as set by setrlimit (see getrlimit(2)), would be exceeded. 

ENOMEM The maximum possible size of a data segment (compiled into the system) would be exceeded. 

ENOMEM Insufficient space exists in the swap area to support the expansion. 

ENOMEM Out of address space; the new break value would extend into an area of the address space defined by some previously established mapping (see mmap(2). 

SEE ALSO

execve(2), mmap(2), getrlimit(2), malloc(3), end(3)

BUGS

Setting the break may fail due to a temporary lack of swap space.  It is not possible to distinguish this from a failure caused by exceeding the maximum size of the data segment without consulting getrlimit(). 

Sun Release 4.0  —  Last change: 22 March 1989

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026