From 6c7994772297281730071874e609b62e68c211be Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Tue, 9 Feb 1999 19:25:38 +0000 Subject: [PATCH] pools of 128 items instead of 1024 items. pools of 128 items instead of 1024 items. --- ChangeLog | 5 +++++ ChangeLog.pre-2-0 | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ glib/glist.c | 2 +- glib/gnode.c | 2 +- glib/gslist.c | 2 +- glist.c | 2 +- gnode.c | 2 +- gslist.c | 2 +- 14 files changed, 46 insertions(+), 6 deletions(-) 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; -- 2.7.4