While I know what the Unix system call brk and function sbrk do, I have no idea what they stand for. Can anyone enlighten me?

link|improve this question

4  
Just do a 'man brk' and the meaning is clear from the description. – Pirooz Jul 28 '11 at 22:49
feedback

1 Answer

up vote 6 down vote accepted

It comes from "break value".

I quote: "The change is made by resetting the process's break value and allocating the appropriate amount of space. The break value is the address of the first location beyond the end of the data segment."

(source: http://www.s-gms.ms.edus.si/cgi-bin/man-cgi?brk+2)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.