Tagged Questions

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
866 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
512 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, ...
2
votes
1answer
293 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
109 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 ...
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
1answer
434 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
691 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 ...