Tagged Questions
8
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
937 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
523 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
321 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
123 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
2answers
44 views
How to set the value of a void **
So I am trying to use the following code to add some memory to the heap without using malloc (size is a unsigned int parameter in the function, and is not a set number)
void * temp = ...
1
vote
1answer
230 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
475 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
2answers
71 views
Allocating proper memory size
I am having an issue with allocating the right size of memory in my program. I do the following:
void * ptr = sbrk(sizeof(void *)+sizeof(unsigned int));
When I do this, I think it is adding too ...
0
votes
1answer
812 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 ...