From: Elliot Lee Date: Tue, 9 Feb 1999 19:25:38 +0000 (+0000) Subject: pools of 128 items instead of 1024 items. X-Git-Tag: GLIB_1_1_16~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c7994772297281730071874e609b62e68c211be;p=platform%2Fupstream%2Fglib.git pools of 128 items instead of 1024 items. pools of 128 items instead of 1024 items. --- diff --git a/ChangeLog b/ChangeLog index 9493978..842fe15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 9493978..842fe15 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -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 * configure.in, acconfig.h: Changed the test for getpwuid_r to diff --git a/glib/glist.c b/glib/glist.c index 8656e3e..802e526 100644 --- a/glib/glist.c +++ b/glib/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; diff --git a/glib/gnode.c b/glib/gnode.c index 23245b3..6f48560 100644 --- a/glib/gnode.c +++ b/glib/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; diff --git a/glib/gslist.c b/glib/gslist.c index 8b20a3d..76452cd 100644 --- a/glib/gslist.c +++ b/glib/gslist.c @@ -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; diff --git a/glist.c b/glist.c index 8656e3e..802e526 100644 --- a/glist.c +++ b/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; diff --git a/gnode.c b/gnode.c index 23245b3..6f48560 100644 --- a/gnode.c +++ b/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; diff --git a/gslist.c b/gslist.c index 8b20a3d..76452cd 100644 --- a/gslist.c +++ b/gslist.c @@ -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;