mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 10:00:18 +00:00
13 lines
345 B
C#
13 lines
345 B
C#
|
using Ryujinx.Memory;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.Debugger
|
|||
|
{
|
|||
|
public interface IDebuggableProcess
|
|||
|
{
|
|||
|
public void DebugStopAllThreads();
|
|||
|
public long[] DebugGetThreadUids();
|
|||
|
public ARMeilleure.State.ExecutionContext DebugGetThreadContext(long threadUid);
|
|||
|
public IVirtualMemoryManager CpuMemory { get; }
|
|||
|
}
|
|||
|
}
|