mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 09:10:19 +00:00
13 lines
No EOL
381 B
C#
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);
|
|
}
|
|
} |