mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 13:10:18 +00:00
31 lines
694 B
C#
31 lines
694 B
C#
using Ryujinx.Cpu;
|
|
using Ryujinx.Horizon.Common;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Threading
|
|
{
|
|
class KThreadContext : IThreadContext
|
|
{
|
|
private readonly IExecutionContext _context;
|
|
|
|
public bool Running => _context.Running;
|
|
public ulong TlsAddress => (ulong)_context.TpidrroEl0;
|
|
|
|
private int _locked;
|
|
|
|
public KThreadContext(IExecutionContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
public bool Lock()
|
|
{
|
|
return Interlocked.Exchange(ref _locked, 1) == 0;
|
|
}
|
|
|
|
public void Unlock()
|
|
{
|
|
Interlocked.Exchange(ref _locked, 0);
|
|
}
|
|
}
|
|
}
|