aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_scopes.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-12-18 23:36:45 +0000
committerEvan Huus <eapache@gmail.com>2012-12-18 23:36:45 +0000
commit561525cbb538b030d28aa4951cf77c9f3f286954 (patch)
treedb11c853df698f691bd2537fd68717ae8fa8f0ce /epan/wmem/wmem_scopes.c
parent09221f45e4db2e2fb01fda57bc20e315a29c9838 (diff)
Rename allocator_glib to allocator_simple, since the block allocator also
uses glib and 'simple' describes the intention far better. svn path=/trunk/; revision=46603
Diffstat (limited to 'epan/wmem/wmem_scopes.c')
-rw-r--r--epan/wmem/wmem_scopes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/wmem/wmem_scopes.c b/epan/wmem/wmem_scopes.c
index 88e6028d32..9242659fa3 100644
--- a/epan/wmem/wmem_scopes.c
+++ b/epan/wmem/wmem_scopes.c
@@ -28,8 +28,8 @@
#include <glib.h>
#include "wmem_scopes.h"
-#include "wmem_allocator_glib.h"
#include "wmem_allocator_block.h"
+#include "wmem_allocator_simple.h"
/* One of the supposed benefits of wmem over the old emem was going to be that
* the scoping of the various memory pools would be obvious, since they would
@@ -154,14 +154,14 @@ wmem_init_scopes(void)
g_assert(in_file_scope == FALSE);
if (getenv("WIRESHARK_DEBUG_WMEM_PACKET_NO_CHUNKS")) {
- packet_scope = wmem_glib_allocator_new();
+ packet_scope = wmem_simple_allocator_new();
}
else {
packet_scope = wmem_block_allocator_new();
}
- file_scope = wmem_glib_allocator_new();
- epan_scope = wmem_glib_allocator_new();
+ file_scope = wmem_simple_allocator_new();
+ epan_scope = wmem_simple_allocator_new();
}
void