1
0
Fork 0
mirror of https://git.naxdy.org/Mirror/Ryujinx.git synced 2025-07-13 23:45:00 +00:00
Ryujinx/Ryujinx.HLE/Debugger/IDebuggableProcess.cs
2022-03-29 13:28:19 +01:00

13 lines
No EOL
379 B
C#

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