Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: Alula <6276139+alula@users.noreply.github.com>
18 lines
478 B
C#
18 lines
478 B
C#
using Ryujinx.Cpu;
|
|
using Ryujinx.Memory;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Process
|
|
{
|
|
interface IProcessContext : IDisposable
|
|
{
|
|
IVirtualMemoryManagerTracked AddressSpace { get; }
|
|
|
|
ulong AddressSpaceSize { get; }
|
|
|
|
IExecutionContext CreateExecutionContext(ExceptionCallbacks exceptionCallbacks);
|
|
void Execute(IExecutionContext context, ulong codeAddress);
|
|
void InvalidateCacheRegion(ulong address, ulong size);
|
|
}
|
|
}
|