Add the block allocator to the documentation.

svn path=/trunk/; revision=46169
This commit is contained in:
Evan Huus 2012-11-24 18:49:52 +00:00
parent ea7e8174c0
commit 67ea470cc8
1 changed files with 3 additions and 0 deletions

View File

@ -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