aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.wmem
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-11-25 13:58:06 +0000
committerEvan Huus <eapache@gmail.com>2012-11-25 13:58:06 +0000
commit0d1f86c33ee4425001fa42e17cd2dd1cca7842ae (patch)
tree58899e52680610e0602d955eb02ebf95cac1b1a6 /doc/README.wmem
parent8abda3c25ae2cd0c253e09739ce3a9bad7d364c8 (diff)
downloadwireshark-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.wmem2
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