From 67ea470cc872282ebf53ad55435763b213cb29be Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Sat, 24 Nov 2012 18:49:52 +0000 Subject: [PATCH] Add the block allocator to the documentation. svn path=/trunk/; revision=46169 --- doc/README.wmem | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/README.wmem b/doc/README.wmem index d12d720f77..174ec91110 100644 --- a/doc/README.wmem +++ b/doc/README.wmem @@ -101,6 +101,9 @@ The currently available allocators are: - glib (wmem_allocator_glib.h) A simple allocator that g_allocs requested memory and tracks each allocation via a linked list. + - block (wmem_allocator_block.h) + A simple block allocator that grabs large chunks of memory at a time + (10 MB currently) and serves allocations out of those chunks. 3.2 Creating a Pool