Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
584 views

What does brk( ) system call do?

According to Linux programmers manual: "brk() and sbrk() change the location of the program break, which defines the end of the process's data segment." What does the data segment mean over here? Is ...
4
votes
5answers
4k views

How are sbrk/brk implemented in Linux?

I was thinking about how the Linux kernel implements system calls and I was wondering if someone could give me a high level view of how sbrk/brk work? I've reviewed the kernel code, but there is just ...
1
vote
1answer
199 views

What do brk and sbrk stand for?

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?
1
vote
2answers
260 views

Is memory cleared by the Linux kernel when brk is reduced then increased again?

I'm just wondering about what happens to memory that a user program releases through a brk system call, then gets back again. Does the kernel clear it out or is the contents left undefined? I believe ...
0
votes
2answers
107 views

What is programe break?Where does it start from,0x00?

int brk(void *end_data_segment); void *sbrk(intptr_t increment); Calling sbrk() with an increment of 0 can be used to find the current location of the program break. What is ...