mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-04 15:21:34 +00:00
This commit is contained in:
parent
54e13eb4ae
commit
70432fb9eb
1 changed files with 6 additions and 0 deletions
|
|
@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue