mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 20:38:35 +00:00
20 lines
351 B
C#
20 lines
351 B
C#
|
using System.Threading;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Kernel.Threading
|
|||
|
{
|
|||
|
class KThreadContext
|
|||
|
{
|
|||
|
private int _locked;
|
|||
|
|
|||
|
public bool Lock()
|
|||
|
{
|
|||
|
return Interlocked.Exchange(ref _locked, 1) == 0;
|
|||
|
}
|
|||
|
|
|||
|
public void Unlock()
|
|||
|
{
|
|||
|
Interlocked.Exchange(ref _locked, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|