This commit is contained in:
ralfkronemeyer_cp 2008-06-25 21:12:06 +00:00
parent 54e13eb4ae
commit 70432fb9eb

View file

@ -8,6 +8,12 @@ namespace Cosmos.Kernel.Plugs {
public static class ThreadImpl { public static class ThreadImpl {
public static IntPtr InternalGetCurrentThread() { public static IntPtr InternalGetCurrentThread() {
return IntPtr.Zero; return IntPtr.Zero;
} }
public static void Sleep(int millisecondsTimeout)
{
Cosmos.Hardware.Global.Sleep((uint) millisecondsTimeout);
}
} }
} }