Cosmos/source/Cosmos.Core_Plugs/System/Threading/ThreadPoolImpl.cs
2020-11-30 17:25:43 +01:00

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();
}
}
}