mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 06:56:14 +01:00
pools of 128 items instead of 1024 items.
pools of 128 items instead of 1024 items.
This commit is contained in:
parent
fa5d3b74b0
commit
6c79947722
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -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>
|
||||
|
||||
* configure.in, acconfig.h: Changed the test for getpwuid_r to
|
||||
|
@ -102,7 +102,7 @@ g_list_alloc (void)
|
||||
if (!current_allocator)
|
||||
{
|
||||
GAllocator *allocator = g_allocator_new ("GLib default GList allocator",
|
||||
1024);
|
||||
128);
|
||||
g_list_validate_allocator (allocator);
|
||||
allocator->last = NULL;
|
||||
current_allocator = allocator;
|
||||
|
@ -108,7 +108,7 @@ g_node_new (gpointer data)
|
||||
if (!current_allocator)
|
||||
{
|
||||
GAllocator *allocator = g_allocator_new ("GLib default GNode allocator",
|
||||
1024);
|
||||
128);
|
||||
g_node_validate_allocator (allocator);
|
||||
allocator->last = NULL;
|
||||
current_allocator = allocator;
|
||||
|
@ -102,7 +102,7 @@ g_slist_alloc (void)
|
||||
if (!current_allocator)
|
||||
{
|
||||
GAllocator *allocator = g_allocator_new ("GLib default GSList allocator",
|
||||
1024);
|
||||
128);
|
||||
g_slist_validate_allocator (allocator);
|
||||
allocator->last = NULL;
|
||||
current_allocator = allocator;
|
||||
|
2
glist.c
2
glist.c
@ -102,7 +102,7 @@ g_list_alloc (void)
|
||||
if (!current_allocator)
|
||||
{
|
||||
GAllocator *allocator = g_allocator_new ("GLib default GList allocator",
|
||||
1024);
|
||||
128);
|
||||
g_list_validate_allocator (allocator);
|
||||
allocator->last = NULL;
|
||||
current_allocator = allocator;
|
||||
|
2
gnode.c
2
gnode.c
@ -108,7 +108,7 @@ g_node_new (gpointer data)
|
||||
if (!current_allocator)
|
||||
{
|
||||
GAllocator *allocator = g_allocator_new ("GLib default GNode allocator",
|
||||
1024);
|
||||
128);
|
||||
g_node_validate_allocator (allocator);
|
||||
allocator->last = NULL;
|
||||
current_allocator = allocator;
|
||||
|
Loading…
Reference in New Issue
Block a user