Documentation improvements
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 23 Nov 2005 04:29:43 +0000 (04:29 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 23 Nov 2005 04:29:43 +0000 (04:29 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
docs/reference/ChangeLog
docs/reference/glib/glib-sections.txt
glib/ghash.c

index 2b69510..7f9fb37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/ghash.c (g_hash_table_ref): 
+       (g_hash_table_unref): Mark these as new API.
+
        Avoid double locking in g_intern_string (#322133,
        Benedikt Meurer)
 
index 2b69510..7f9fb37 100644 (file)
@@ -1,5 +1,8 @@
 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/ghash.c (g_hash_table_ref): 
+       (g_hash_table_unref): Mark these as new API.
+
        Avoid double locking in g_intern_string (#322133,
        Benedikt Meurer)
 
index 2b69510..7f9fb37 100644 (file)
@@ -1,5 +1,8 @@
 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/ghash.c (g_hash_table_ref): 
+       (g_hash_table_unref): Mark these as new API.
+
        Avoid double locking in g_intern_string (#322133,
        Benedikt Meurer)
 
index 620a7e8..97f4363 100644 (file)
@@ -1,3 +1,8 @@
+2005-11-22  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/glib-sections.txt: Add g_hash_table_ref
+       and g_hash_table_unref
+
 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.9.0 ===
index c3e1fdf..047520e 100644 (file)
@@ -1744,6 +1744,8 @@ GHRFunc
 g_hash_table_freeze
 g_hash_table_thaw
 g_hash_table_destroy
+g_hash_table_ref
+g_hash_table_unref
 
 <SUBSECTION>
 g_direct_equal
index 41ce0db..f094b67 100644 (file)
@@ -158,6 +158,8 @@ g_hash_table_new_full (GHashFunc       hash_func,
  * This function is MT-safe and may be called from any thread.
  * 
  * Return value: the passed in #GHashTable.
+ * 
+ * Since: 2.10
  **/
 GHashTable*
 g_hash_table_ref (GHashTable *hash_table)
@@ -177,6 +179,8 @@ g_hash_table_ref (GHashTable *hash_table)
  * If the reference count drops to 0, all keys and values will be
  * destroyed, and all memory allocated by the hash table is released.
  * This function is MT-safe and may be called from any thread.
+ * 
+ * Since: 2.10
  **/
 void
 g_hash_table_unref (GHashTable *hash_table)