Documentation improvements

This commit is contained in:
Matthias Clasen 2005-11-23 04:29:43 +00:00
parent 9ee3896017
commit fe749cbd3b
6 changed files with 20 additions and 0 deletions

View 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)

View 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)

View 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)

View 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 ===

View 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

View 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)