mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 22:16:16 +01:00
Documentation improvements
This commit is contained in:
parent
9ee3896017
commit
fe749cbd3b
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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 ===
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user