Comment on Ask HN: Any good resource on writing your own mmap allocator?Comments−rain17yI collected some links to interesting and useful links about allocators here https://github.com/rain-1/awesome-allocatorsI think you would look into bitmap based allocators (which only handles fixed size allocations, but it's very simple) and then (more advanced) binary buddies system to start with.* http://sean.cm/a/tricolor-garbage-collector* http://www.memorymanagement.org/mmref/alloc.html−cplatOP7yThanks! This is very useful.
Comments
I collected some links to interesting and useful links about allocators here https://github.com/rain-1/awesome-allocators
I think you would look into bitmap based allocators (which only handles fixed size allocations, but it's very simple) and then (more advanced) binary buddies system to start with.
* http://sean.cm/a/tricolor-garbage-collector
* http://www.memorymanagement.org/mmref/alloc.html
Thanks! This is very useful.