diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-08 14:30:29 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-08 14:30:29 +0000 |
commit | a233a0bf08c5bf2f9bf6efdbe42f563c8ae8911c (patch) | |
tree | dab9c838d2664c0d893b6823fa8fc5e41ecc4d85 /docs | |
parent | 4884c293d1198347ac496570fa6707752ed71bd0 (diff) |
Improve GOnce docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/ChangeLog | 5 | ||||
-rw-r--r-- | docs/reference/glib/tmpl/threads.sgml | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index d4e5cf4a3..0969a7c74 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2005-11-08 Matthias Clasen <mclasen@redhat.com> + + * glib/tmpl/threads.sgml: Improve GOnce docs. + (#320950, Christophe Fergeau) + 2005-11-04 Matthias Clasen <mclasen@redhat.com> * glib/running.sgml: Document fatal_criticals. diff --git a/docs/reference/glib/tmpl/threads.sgml b/docs/reference/glib/tmpl/threads.sgml index 48fe84e12..a2b17456b 100644 --- a/docs/reference/glib/tmpl/threads.sgml +++ b/docs/reference/glib/tmpl/threads.sgml @@ -1690,9 +1690,9 @@ get_debug_flags () </para> @once: a #GOnce structure -@func: the function associated to @once. This function is called only once, - regardless of the number of times it and its associated #GOnce struct - are passed to g_once() . +@func: the #GThreadFunc function associated to @once. This function is + called only once, regardless of the number of times it and its + associated #GOnce struct are passed to g_once() . @arg: data to be passed to @func @Since: 2.4 |