diff --git a/ChangeLog b/ChangeLog index 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 949397848..842fe1563 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 8656e3e41..802e5269e 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 23245b348..6f4856067 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 8b20a3d3a..76452cd27 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 8656e3e41..802e5269e 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 23245b348..6f4856067 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 8b20a3d3a..76452cd27 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;