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:
- Single Threaded
- The whole heap can be freed with a single call.
- Small footprint because i need to use one heap for each list/tree widget in my GUI.
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.