2002-12-23 04:35:44 +00:00
|
|
|
// 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
|
|
|
|
{
|
2003-08-30 00:26:38 +00:00
|
|
|
[DllImport("libgthread-2.0-0.dll")]
|
2002-12-23 04:35:44 +00:00
|
|
|
static extern void g_thread_init (IntPtr i);
|
|
|
|
|
|
|
|
public static void Init ()
|
|
|
|
{
|
|
|
|
g_thread_init (IntPtr.Zero);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|