diff options
author | Evan Huus <eapache@gmail.com> | 2012-11-25 13:58:06 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2012-11-25 13:58:06 +0000 |
commit | 0d1f86c33ee4425001fa42e17cd2dd1cca7842ae (patch) | |
tree | 58899e52680610e0602d955eb02ebf95cac1b1a6 /doc/README.wmem | |
parent | 8abda3c25ae2cd0c253e09739ce3a9bad7d364c8 (diff) | |
download | wireshark-0d1f86c33ee4425001fa42e17cd2dd1cca7842ae.tar.gz wireshark-0d1f86c33ee4425001fa42e17cd2dd1cca7842ae.tar.bz2 wireshark-0d1f86c33ee4425001fa42e17cd2dd1cca7842ae.zip |
Allocate wmem memory in blocks of 8MB, not 10, because powers of two are nice.
svn path=/trunk/; revision=46175
Diffstat (limited to 'doc/README.wmem')
-rw-r--r-- | doc/README.wmem | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.wmem b/doc/README.wmem index 174ec91110..905966fd0d 100644 --- a/doc/README.wmem +++ b/doc/README.wmem @@ -103,7 +103,7 @@ The currently available allocators are: 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. + (8 MB currently) and serves allocations out of those chunks. 3.2 Creating a Pool |