Added missing </para> Added missing </para> Added missing </para> Added

Tue Aug 17 08:42:17 1999  Owen Taylor  <otaylor@redhat.com>

	* tmpl/datasets.sgml: Added missing </para>
	* tmpl/timers.sgml: Added missing </para>
	* tmpl/misc_utils.sgml: Added missing </para>
	* tmpl/linked_lists_double.sgml: Added missing </para>
	* tmpl/linked_lists_single.sgml: Added missing </para>
	* tmpl/threads.sgml: Removed extra <para>s.
	* tmpl/main.sgml: Added missing </para>
This commit is contained in:
Owen Taylor 1999-08-17 12:39:52 +00:00 committed by Owen Taylor
parent 495c25fd80
commit 0abbf9b6fb
9 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,13 @@
Tue Aug 17 08:42:17 1999 Owen Taylor <otaylor@redhat.com>
* tmpl/datasets.sgml: Added missing </para>
* tmpl/timers.sgml: Added missing </para>
* tmpl/misc_utils.sgml: Added missing </para>
* tmpl/linked_lists_double.sgml: Added missing </para>
* tmpl/linked_lists_single.sgml: Added missing </para>
* tmpl/threads.sgml: Removed extra <para>s.
* tmpl/main.sgml: Added missing </para>
Wed Aug 18 23:38:52 1999 Owen Taylor <otaylor@redhat.com> Wed Aug 18 23:38:52 1999 Owen Taylor <otaylor@redhat.com>
* README: Added some simple build instructions. * README: Added some simple build instructions.

View File

@ -1,3 +1,13 @@
Tue Aug 17 08:42:17 1999 Owen Taylor <otaylor@redhat.com>
* tmpl/datasets.sgml: Added missing </para>
* tmpl/timers.sgml: Added missing </para>
* tmpl/misc_utils.sgml: Added missing </para>
* tmpl/linked_lists_double.sgml: Added missing </para>
* tmpl/linked_lists_single.sgml: Added missing </para>
* tmpl/threads.sgml: Removed extra <para>s.
* tmpl/main.sgml: Added missing </para>
Wed Aug 18 23:38:52 1999 Owen Taylor <otaylor@redhat.com> Wed Aug 18 23:38:52 1999 Owen Taylor <otaylor@redhat.com>
* README: Added some simple build instructions. * README: Added some simple build instructions.

View File

@ -23,6 +23,7 @@ in the hash table of #GQuark identifiers.
<para> <para>
There is no function to create a dataset. It is automatically created as There is no function to create a dataset. It is automatically created as
soon as you add elements to it. soon as you add elements to it.
</para>
<para> <para>
To add data elements to a dataset use g_dataset_id_set_data(), To add data elements to a dataset use g_dataset_id_set_data(),
g_dataset_id_set_data_full(), g_dataset_set_data() g_dataset_id_set_data_full(), g_dataset_set_data()

View File

@ -36,6 +36,7 @@ the new start of the list, which may have changed.
<para> <para>
There is no function to create a #GList. NULL is considered to be the empty There is no function to create a #GList. NULL is considered to be the empty
list so you simply set a #GList* to NULL. list so you simply set a #GList* to NULL.
</para>
<para> <para>
To add elements, use g_list_append(), g_list_prepend(), g_list_insert() To add elements, use g_list_append(), g_list_prepend(), g_list_insert()
and g_list_insert_sorted(). and g_list_insert_sorted().

View File

@ -36,6 +36,7 @@ the new start of the list, which may have changed.
<para> <para>
There is no function to create a #GSList. NULL is considered to be the empty There is no function to create a #GSList. NULL is considered to be the empty
list so you simply set a #GSList* to NULL. list so you simply set a #GSList* to NULL.
</para>
<para> <para>
To add elements, use g_slist_append(), g_slist_prepend(), g_slist_insert() To add elements, use g_slist_append(), g_slist_prepend(), g_slist_insert()
and g_slist_insert_sorted(). and g_slist_insert_sorted().

View File

@ -425,6 +425,7 @@ parameter passed to the g_source_add() and related functions.
</entry> </entry>
</row> </row>
</tbody></tgroup></informaltable> </tbody></tgroup></informaltable>
</para>
<para> <para>
For idle sources, the prepare and check functions always return TRUE to For idle sources, the prepare and check functions always return TRUE to

View File

@ -7,6 +7,7 @@ a selection of portable utility functions.
<!-- ##### SECTION Long_Description ##### --> <!-- ##### SECTION Long_Description ##### -->
<para> <para>
These are portable utility functions. These are portable utility functions.
</para>
<!-- ##### SECTION See_Also ##### --> <!-- ##### SECTION See_Also ##### -->
<para> <para>

View File

@ -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 (mutual exclusion). It can be used to protect data against shared
access. Take for example the following function: access. Take for example the following function:
<para>
<example> <example>
<title>A function which will not work in a threaded environment</title> <title>A function which will not work in a threaded environment</title>
<programlisting> <programlisting>
@ -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 between the threads, but to be private to each thread. This can be
done as follows: done as follows:
<para>
<example> <example>
<title>Using GPrivate for per-thread data</title> <title>Using GPrivate for per-thread data</title>
<programlisting> <programlisting>

View File

@ -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, 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 g_timer_elapsed () to determine the time which has elapsed since the timer
was started, and g_timer_stop () to stop the timer. was started, and g_timer_stop () to stop the timer.
</para>
<!-- ##### SECTION See_Also ##### --> <!-- ##### SECTION See_Also ##### -->
<para> <para>