Tagged Questions
The sbrk tag has no wiki summary.
6
votes
4answers
4k views
How is malloc() implemented internally?
Can anyone explain how malloc() works internally?
I have sometimes done strace program and I see a lot of sbrk system calls, doing man sbrk talks about it being used in malloc() but not much more.
...
5
votes
2answers
855 views
How do I free memory obtained by sbrk()?
I have a custom allocator function which uses sbrk() to obtain memory.
How do I release this memory when it's no longer needed?
Is there a function equivalent to free() for malloc() ?
or do I have ...
4
votes
3answers
511 views
Memory allocation in C
the following is a very very simple version of malloc() and seems to allocate some space to me, but apart from the fact that there is no free() and I don't check if I've overrun the allocated space, ...
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 ...
3
votes
5answers
2k views
How does sbrk() work in C++?
Where can I read about sbrk() in some detail?
How does it exactly work?
In what situations would I want to use sbrk() instead of the cumbersome malloc() and new()?
btw, what is the expansion for ...
2
votes
1answer
288 views
Memory allocator in C — how to utilize sbrk()'ed space
I've been writing an implementation of malloc and was wondering if someone could help me with this problem.
Basically, I would like to reuse memory after allocating it using sbrk(), and having made ...
2
votes
2answers
108 views
What is the difference between passing sbrk() an intptr_t vs int in C
It seems to have no impact on the functionality of sbrk, but in sbrk()'s documentation it says that it requires an intptr_t parameter.
It works (or at least seems to work) when passing an int type as ...
2
votes
2answers
548 views
How do you dynamically allocate memory in Mac OS X assembly?
I would like to dynamically allocate memory from an assembly
program that does not link against the standard C library.
Since brk(2) and sbrk(2) are unavailable on Mac OS X (10.6.2),
what are the ...
1
vote
1answer
197 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
1answer
433 views
mmap vs sbrk, performance comparison
Which of these calls is faster on average? I've heard that mmap is faster for smaller allocations but I haven't heard a comparison of either. Any information on performance for these would be nice.
0
votes
1answer
688 views
Undefined reference to _sbrk
I am having a problem with _sbrk. In a link phase of compilation i use below comand to link my objects and i get undefined reference to _sbrk.
arm-none-eabi-ld -static -T linkerscript.ld -o exe ...
0
votes
1answer
475 views
Memory (sbrk) 16-byte aligned shifting on pointer access
I wrote a reasonably basic memory allocator using sbrk. I ask for a chunk of memory, say 65k and carve it up as needed for variables requesting dynamic memory. I free the memory by adding it back to ...