Tagged Questions
0
votes
1answer
488 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 ...