1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +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

@ -217,17 +217,8 @@ namespace System.Threading
}
}
public void Suspend() { SuspendInternal(); }
[CallingConvention(.Cdecl)]
private extern void SuspendInternal();
public void Resume() { ResumeInternal(); }
[CallingConvention(.Cdecl)]
private extern void ResumeInternal();
public void Interrupt() { InterruptInternal(); }
[CallingConvention(.Cdecl)]
private extern void InterruptInternal();
public extern void Suspend();
public extern void Resume();
public ThreadPriority Priority
{