From 0abbf9b6fbbd48326c924c4fc68770ae090d9db7 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Tue, 17 Aug 1999 12:39:52 +0000 Subject: [PATCH] Added missing Added missing Added missing Added Tue Aug 17 08:42:17 1999 Owen Taylor * tmpl/datasets.sgml: Added missing * tmpl/timers.sgml: Added missing * tmpl/misc_utils.sgml: Added missing * tmpl/linked_lists_double.sgml: Added missing * tmpl/linked_lists_single.sgml: Added missing * tmpl/threads.sgml: Removed extra s. * tmpl/main.sgml: Added missing --- docs/reference/ChangeLog | 10 ++++++++++ docs/reference/glib/glib/ChangeLog | 10 ++++++++++ docs/reference/glib/tmpl/datasets.sgml | 1 + docs/reference/glib/tmpl/linked_lists_double.sgml | 1 + docs/reference/glib/tmpl/linked_lists_single.sgml | 1 + docs/reference/glib/tmpl/main.sgml | 1 + docs/reference/glib/tmpl/misc_utils.sgml | 1 + docs/reference/glib/tmpl/threads.sgml | 2 -- docs/reference/glib/tmpl/timers.sgml | 1 + 9 files changed, 26 insertions(+), 2 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 2db3d6260..dcff5aa9b 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,13 @@ +Tue Aug 17 08:42:17 1999 Owen Taylor + + * tmpl/datasets.sgml: Added missing + * tmpl/timers.sgml: Added missing + * tmpl/misc_utils.sgml: Added missing + * tmpl/linked_lists_double.sgml: Added missing + * tmpl/linked_lists_single.sgml: Added missing + * tmpl/threads.sgml: Removed extra s. + * tmpl/main.sgml: Added missing + Wed Aug 18 23:38:52 1999 Owen Taylor * README: Added some simple build instructions. diff --git a/docs/reference/glib/glib/ChangeLog b/docs/reference/glib/glib/ChangeLog index 2db3d6260..dcff5aa9b 100644 --- a/docs/reference/glib/glib/ChangeLog +++ b/docs/reference/glib/glib/ChangeLog @@ -1,3 +1,13 @@ +Tue Aug 17 08:42:17 1999 Owen Taylor + + * tmpl/datasets.sgml: Added missing + * tmpl/timers.sgml: Added missing + * tmpl/misc_utils.sgml: Added missing + * tmpl/linked_lists_double.sgml: Added missing + * tmpl/linked_lists_single.sgml: Added missing + * tmpl/threads.sgml: Removed extra s. + * tmpl/main.sgml: Added missing + Wed Aug 18 23:38:52 1999 Owen Taylor * README: Added some simple build instructions. diff --git a/docs/reference/glib/tmpl/datasets.sgml b/docs/reference/glib/tmpl/datasets.sgml index afd64be05..b51803775 100644 --- a/docs/reference/glib/tmpl/datasets.sgml +++ b/docs/reference/glib/tmpl/datasets.sgml @@ -23,6 +23,7 @@ in the hash table of #GQuark identifiers. There is no function to create a dataset. It is automatically created as soon as you add elements to it. + To add data elements to a dataset use g_dataset_id_set_data(), g_dataset_id_set_data_full(), g_dataset_set_data() diff --git a/docs/reference/glib/tmpl/linked_lists_double.sgml b/docs/reference/glib/tmpl/linked_lists_double.sgml index 63ae2cfb1..7add0adbd 100644 --- a/docs/reference/glib/tmpl/linked_lists_double.sgml +++ b/docs/reference/glib/tmpl/linked_lists_double.sgml @@ -36,6 +36,7 @@ the new start of the list, which may have changed. There is no function to create a #GList. NULL is considered to be the empty list so you simply set a #GList* to NULL. + To add elements, use g_list_append(), g_list_prepend(), g_list_insert() and g_list_insert_sorted(). diff --git a/docs/reference/glib/tmpl/linked_lists_single.sgml b/docs/reference/glib/tmpl/linked_lists_single.sgml index 68f7f0150..95dc4df99 100644 --- a/docs/reference/glib/tmpl/linked_lists_single.sgml +++ b/docs/reference/glib/tmpl/linked_lists_single.sgml @@ -36,6 +36,7 @@ the new start of the list, which may have changed. There is no function to create a #GSList. NULL is considered to be the empty list so you simply set a #GSList* to NULL. + To add elements, use g_slist_append(), g_slist_prepend(), g_slist_insert() and g_slist_insert_sorted(). diff --git a/docs/reference/glib/tmpl/main.sgml b/docs/reference/glib/tmpl/main.sgml index d37739549..9795fa410 100644 --- a/docs/reference/glib/tmpl/main.sgml +++ b/docs/reference/glib/tmpl/main.sgml @@ -425,6 +425,7 @@ parameter passed to the g_source_add() and related functions. + For idle sources, the prepare and check functions always return TRUE to diff --git a/docs/reference/glib/tmpl/misc_utils.sgml b/docs/reference/glib/tmpl/misc_utils.sgml index bc0395102..c32efd3d7 100644 --- a/docs/reference/glib/tmpl/misc_utils.sgml +++ b/docs/reference/glib/tmpl/misc_utils.sgml @@ -7,6 +7,7 @@ a selection of portable utility functions. These are portable utility functions. + diff --git a/docs/reference/glib/tmpl/threads.sgml b/docs/reference/glib/tmpl/threads.sgml index 8b2a372b6..3e0f21f07 100644 --- a/docs/reference/glib/tmpl/threads.sgml +++ b/docs/reference/glib/tmpl/threads.sgml @@ -207,7 +207,6 @@ The #GMutex struct is an opaque data structure to represent a mutex (mutual exclusion). It can be used to protect data against shared access. Take for example the following function: - A function which will not work in a threaded environment @@ -736,7 +735,6 @@ example from above. Now we don't want current_number to be shared between the threads, but to be private to each thread. This can be done as follows: - Using GPrivate for per-thread data diff --git a/docs/reference/glib/tmpl/timers.sgml b/docs/reference/glib/tmpl/timers.sgml index 840a0bc93..87cba3791 100644 --- a/docs/reference/glib/tmpl/timers.sgml +++ b/docs/reference/glib/tmpl/timers.sgml @@ -10,6 +10,7 @@ Timers can be used to time operations, in a similar way to a stopwatch. Call g_timer_new () to create the timer, g_timer_start () to start it, g_timer_elapsed () to determine the time which has elapsed since the timer was started, and g_timer_stop () to stop the timer. +