pools of 128 items instead of 1024 items.

pools of 128 items instead of 1024 items.
This commit is contained in:
Elliot Lee 1999-02-09 19:25:38 +00:00
parent fa5d3b74b0
commit 6c79947722
14 changed files with 46 additions and 6 deletions

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -1,3 +1,8 @@
February 9, 1999 sopwith@redhat.com
. glist.c, gnode.c, gslist.c: allocate pools of 128 items instead
of 1024 items.
1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de> 1999-02-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acconfig.h: Changed the test for getpwuid_r to * configure.in, acconfig.h: Changed the test for getpwuid_r to

View File

@ -102,7 +102,7 @@ g_list_alloc (void)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GList allocator", GAllocator *allocator = g_allocator_new ("GLib default GList allocator",
1024); 128);
g_list_validate_allocator (allocator); g_list_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;

View File

@ -108,7 +108,7 @@ g_node_new (gpointer data)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GNode allocator", GAllocator *allocator = g_allocator_new ("GLib default GNode allocator",
1024); 128);
g_node_validate_allocator (allocator); g_node_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;

View File

@ -102,7 +102,7 @@ g_slist_alloc (void)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GSList allocator", GAllocator *allocator = g_allocator_new ("GLib default GSList allocator",
1024); 128);
g_slist_validate_allocator (allocator); g_slist_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;

View File

@ -102,7 +102,7 @@ g_list_alloc (void)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GList allocator", GAllocator *allocator = g_allocator_new ("GLib default GList allocator",
1024); 128);
g_list_validate_allocator (allocator); g_list_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;

View File

@ -108,7 +108,7 @@ g_node_new (gpointer data)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GNode allocator", GAllocator *allocator = g_allocator_new ("GLib default GNode allocator",
1024); 128);
g_node_validate_allocator (allocator); g_node_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;

View File

@ -102,7 +102,7 @@ g_slist_alloc (void)
if (!current_allocator) if (!current_allocator)
{ {
GAllocator *allocator = g_allocator_new ("GLib default GSList allocator", GAllocator *allocator = g_allocator_new ("GLib default GSList allocator",
1024); 128);
g_slist_validate_allocator (allocator); g_slist_validate_allocator (allocator);
allocator->last = NULL; allocator->last = NULL;
current_allocator = allocator; current_allocator = allocator;