Ryujinx/Ryujinx.HLE/Debugger/IDebuggableProcess.cs
2022-03-29 13:29:55 +01:00

13 lines
No EOL
381 B
C#

using Ryujinx.Memory;
namespace Ryujinx.HLE.Debugger
{
public interface IDebuggableProcess
{
void DebugStopAllThreads();
ulong[] DebugGetThreadUids();
ARMeilleure.State.ExecutionContext DebugGetThreadContext(ulong threadUid);
IVirtualMemoryManager CpuMemory { get; }
void InvalidateCacheRegion(ulong address, ulong size);
}
}