f1e095a87b
* glib/Log.cs: Make LogLevelFlags CLS compliant. * glib/SignalCallback.cs: Set the constructor protection level to protected, since it can not be instantiate.d * glib/Marshaller.cs: Do not allow instances of this class as it only exposes static methods. * glib/Source.cs, glib/FileUtils.cs, glib/Timeout.cs, glib/Thread.cs, glib/Markup.cs, glib/TypeConverter.cs: Ditto. svn path=/trunk/gtk-sharp/; revision=20573
24 lines
381 B
C#
24 lines
381 B
C#
// Thread.cs - thread awareness
|
|
//
|
|
// Author: Alp Toker <alp@atoker.com>
|
|
//
|
|
// (c) 2002 Alp Toker
|
|
|
|
namespace GLib
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class Thread
|
|
{
|
|
private Thread () {}
|
|
|
|
[DllImport("libgthread-2.0-0.dll")]
|
|
static extern void g_thread_init (IntPtr i);
|
|
|
|
public static void Init ()
|
|
{
|
|
g_thread_init (IntPtr.Zero);
|
|
}
|
|
}
|
|
}
|