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:
parent
45edfc8604
commit
b9ab8214d2
3 changed files with 9 additions and 22 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue