pools of 128 items instead of 1024 items.
authorElliot Lee <sopwith@src.gnome.org>
Tue, 9 Feb 1999 19:25:38 +0000 (19:25 +0000)
committerElliot Lee <sopwith@src.gnome.org>
Tue, 9 Feb 1999 19:25:38 +0000 (19:25 +0000)
pools of 128 items instead of 1024 items.

14 files changed:
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/glist.c
glib/gnode.c
glib/gslist.c
glist.c
gnode.c
gslist.c

index 9493978..842fe15 100644 (file)
--- 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  <wilhelmi@ira.uka.de>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 9493978..842fe15 100644 (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>
 
        * configure.in, acconfig.h: Changed the test for getpwuid_r to
index 8656e3e..802e526 100644 (file)
@@ -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;
index 23245b3..6f48560 100644 (file)
@@ -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;
index 8b20a3d..76452cd 100644 (file)
@@ -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 (file)
--- 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 (file)
--- 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;
index 8b20a3d..76452cd 100644 (file)
--- 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;