Tagged Questions
6
votes
4answers
3k 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.
...
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, ...
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
287 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 ...