Reputation: 13065
Can someone point me to a few open source heap implementations which are not part of a huge library like GLIB.
I need one with the following features:
I think there should be a lot of existing stuff. I remember i had to implement a simple first-fit heap allocator myself in university courses twice.
For C++ it must not use the standard c++ libraries or templates.
Upvotes: 3
Views: 1245
Reputation: 74390
Have a look at: http://www.25thandclement.com/~william/projects/libarena.html
You might also want to watch this presentation: http://www.slideshare.net/emery/composing-highperformance-memory-allocators-with-heap-layers
Upvotes: 1