2006-08-09 Alp Toker <alp@atoker.com>

* GLib/Thread.xml:
  * Gdk/Threads.xml: Explain proper thread awareness init.

svn path=/trunk/gtk-sharp/; revision=63560
This commit is contained in:
Alp Toker 2006-08-09 20:11:34 +00:00
parent 9a8f1524a1
commit 1e09e3a650
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-08-09 Alp Toker <alp@atoker.com>
* GLib/Thread.xml:
* Gdk/Threads.xml: Explain proper thread awareness init.
2006-03-23 Hector E. Gomez Morales <hectorgm@ciencias.unam.mx>
* en/Gtk/Button.xml

View File

@ -24,7 +24,7 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<summary>Initializes GLib thread awareness. This must be called before GLib's thread safety features are used. Initializing GLib thread awareness more than once causes undefined behaviour and must be avoided by checking to see if it has already been done with <see cref="P:GLib.Thread.Supported" />.</summary>
<remarks>To be added</remarks>
</Docs>
</Member>
@ -35,7 +35,7 @@
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>Checks to see if GLib thread support has been initialized with <see cref="M:GLib.Thread.Init()" />.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>

View File

@ -79,7 +79,7 @@ static void Main (string[] args)
</ReturnValue>
<Parameters />
<Docs>
<summary>This call must be made before any use of the main loop from Gtk#; to be safe, call it before <see cref="M:Gtk.Application.Init()" />.</summary>
<summary>This call must be made before any use of the main loop from Gtk#; to be safe, call it before <see cref="M:Gtk.Application.Init()" />. It must also be preceded by a call to <see cref="M:GLib.Thread.Init()" /> if GLib threading has not yet been initialized.</summary>
<remarks>Initializes <see cref="N:Gdk" /> so that it can be used from multiple threads in conjunction with <see cref="M:Gdk.Threads.Enter()" /> and <see cref="M:Gdk.Threads.Leave()" />.</remarks>
</Docs>
</Member>