mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
30 lines
756 B
C#
30 lines
756 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Threading
|
|
{
|
|
[Plug(typeof(ThreadPool))]
|
|
class ThreadPoolImpl
|
|
{
|
|
public static bool GetEnableWorkerTracking()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[PlugMethod(Signature = "Interop_BOOL__System_Threading_ThreadPool_RequestWorkerThread__")]
|
|
public static bool RequestWorkerThread()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static void NotifyWorkItemProgressNative()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|