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>
* 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>
* README: Added some simple build instructions.

View File

@ -23,6 +23,7 @@ in the hash table of #GQuark identifiers.
<para>
There is no function to create a dataset. It is automatically created as
soon as you add elements to it.
</para>
<para>
To add data elements to a dataset use g_dataset_id_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>
There is no function to create a #GList. NULL is considered to be the empty
list so you simply set a #GList* to NULL.
</para>
<para>
To add elements, use g_list_append(), g_list_prepend(), g_list_insert()
and g_list_insert_sorted().

View File

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

View File

@ -425,6 +425,7 @@ parameter passed to the g_source_add() and related functions.
</entry>
</row>
</tbody></tgroup></informaltable>
</para>
<para>
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 ##### -->
<para>
These are portable utility functions.
</para>
<!-- ##### SECTION See_Also ##### -->
<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
access. Take for example the following function:
<para>
<example>
<title>A function which will not work in a threaded environment</title>
<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
done as follows:
<para>
<example>
<title>Using GPrivate for per-thread data</title>
<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,
g_timer_elapsed () to determine the time which has elapsed since the timer
was started, and g_timer_stop () to stop the timer.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>