1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Remove Thread.Interrupt

This commit is contained in:
Brian Fiete 2022-05-24 07:28:21 -07:00
parent 45edfc8604
commit b9ab8214d2
3 changed files with 9 additions and 22 deletions

View file

@ -39,10 +39,7 @@ namespace bf
private:
BfInternalThread* SetupInternalThread();
BFRT_EXPORT void ManualThreadInit();
BFRT_EXPORT void SuspendInternal();
BFRT_EXPORT void ResumeInternal();
BFRT_EXPORT void InterruptInternal();
BFRT_EXPORT void ManualThreadInit();
BFRT_EXPORT int GetPriorityNative();
BFRT_EXPORT void SetPriorityNative(int priority);
BFRT_EXPORT void SetJoinOnDelete(bool joinOnDelete);
@ -67,6 +64,10 @@ namespace bf
BFRT_EXPORT void Dbg_CreateInternal();
public:
BFRT_EXPORT void Suspend();
BFRT_EXPORT void Resume();
BFRT_EXPORT void Abort();
BFRT_EXPORT static void MemoryBarrier();
static Thread* Alloc()