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 2b6951067adaaffbd0f9d080fc1265bf3e9cf739..7f9fb3726faa46f0ad1c5e16504d98438d04e008 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 2b6951067adaaffbd0f9d080fc1265bf3e9cf739..7f9fb3726faa46f0ad1c5e16504d98438d04e008 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 2b6951067adaaffbd0f9d080fc1265bf3e9cf739..7f9fb3726faa46f0ad1c5e16504d98438d04e008 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 620a7e855b73fe990d944fce31283b77da95b4a7..97f4363d374351477891432c8a0d4ab22f6e506b 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 c3e1fdf78cb31ad6aca6981a99a11872ea49201b..047520e2484e562509670dacbe589cf6059f9f0e 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 41ce0dbf25857c22033d2a7e745c50aa180b0d09..f094b67a8349022d4df0f48b15825f9bcb892091 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)