Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
authorOwen Taylor <otaylor@redhat.com>
Fri, 21 Sep 2001 00:34:12 +0000 (00:34 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 21 Sep 2001 00:34:12 +0000 (00:34 +0000)
Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>

* Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().

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/gmem.c
glib/gmem.h
glib/gstrfuncs.c

index 9d98a9f..9856d5b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index 9d98a9f..9856d5b 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 20 20:33:45 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * Rename g_mem_vtable_is_set() to g_mem_is_system_malloc().
+
 2001-09-20  Tor Lillqvist  <tml@iki.fi>
 
        * glib/gutils.c (g_path_is_absolute): (Win32:) Accept also forward
index a7c1fcf..43623aa 100644 (file)
@@ -224,18 +224,20 @@ fallback_calloc (gsize n_blocks,
 static gboolean vtable_set = FALSE;
 
 /**
- * g_mem_vtable_is_set:
+ * g_mem_is_system_malloc
  * 
- * Checks whether a custom vtable as been set by g_mem_set_vtable.
- * If a custom vtable has not been set, memory allocated with
- * free() can be used interchangeable with memory allocated using
- * g_free(). This function is useful for avoiding an extra copy
+ * Checks whether the allocator used by g_malloc() is the system's
+ * malloc implementation. If it returns %TRUE memory allocated with
+ * malloc() can be used interchangeable with memory allocated using
+ * g_malloc(). This function is useful for avoiding an extra copy
  * of allocated memory returned by a non-GLib-based API.
- * 
- * Return value: if %TRUE, a custom vtable has been set.
+ *
+ * A different allocator can be set using g_mem_set_vtable().
+ *
+ * Return value: if %TRUE, malloc() and g_malloc() can be mixed.
  **/
 gboolean
-g_mem_vtable_is_set (void)
+g_mem_is_system_malloc (void)
 {
   return vtable_set;
 }
index d1f3d6a..9d5b418 100644 (file)
@@ -83,7 +83,7 @@ struct _GMemVTable
                           gsize    n_bytes);
 };
 void    g_mem_set_vtable (GMemVTable   *vtable);
-gboolean g_mem_vtable_is_set (void);
+gboolean g_mem_is_system_malloc (void);
 
 /* Memory profiler and checker, has to be enabled via g_mem_set_vtable()
  */
index f699ca9..6dd4fe3 100644 (file)
@@ -186,7 +186,7 @@ g_strdup_vprintf (const gchar *format,
   gchar *buffer;
 #ifdef HAVE_VASPRINTF
   vasprintf (&buffer, format, args1);
-  if (g_mem_vtable_is_set ()) 
+  if (g_mem_is_system_malloc ()) 
     {
       gchar *buffer1 = g_strdup (buffer);
       free (buffer);