Tagged Questions

2
votes
1answer
320 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 ...
0
votes
1answer
487 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 ...