aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.wmem
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-11-24 18:49:52 +0000
committerEvan Huus <eapache@gmail.com>2012-11-24 18:49:52 +0000
commit67ea470cc872282ebf53ad55435763b213cb29be (patch)
tree7ac201ee3988bcefbaace767c6245571644b016f /doc/README.wmem
parentea7e8174c0c9b7e09deccce4c491af041362d4d6 (diff)
Add the block allocator to the documentation.
svn path=/trunk/; revision=46169
Diffstat (limited to 'doc/README.wmem')
-rw-r--r--doc/README.wmem3
1 files changed, 3 insertions, 0 deletions
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