mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 18:50:18 +00:00
12 lines
345 B
C#
12 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; }
|
|
}
|
|
}
|