ticktac-project/tchecker

Single free list

Closed this issue · 1 comments

Consider using a single free list for all pool allocated objects. This would remove the need of a GC thread. When an object is not used any more, it adds itself to the free list. When a pool runs out of memory, it can inspect the free list to recover the chunks that it has allocated.

Solved in v0.3 (with a different solution)