Remove the freelist from memarea.c

This is in accordance with our usual policy against freelists,
now that working allocators are everywhere.

It should also make memarea.c's coverage higher.

I also doubt that this code ever helped performance.
This commit is contained in:
Nick Mathewson
2016-02-24 14:32:09 -05:00
parent 1318c1611f
commit 73c433a48a
7 changed files with 23 additions and 84 deletions
+4
View File
@@ -0,0 +1,4 @@
o Removed code:
- We no longer maintain an internal freelist in memarea.c. Allocators
should be good enough to make this code unnecessary, and it's doubtful
that it ever had any performance benefit.