mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 12:57:43 +02:00
12 lines
396 B
C#
12 lines
396 B
C#
using Ryujinx.Memory;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Process
|
|
{
|
|
class ProcessContextFactory : IProcessContextFactory
|
|
{
|
|
public IProcessContext Create(KernelContext context, ulong pid, ulong addressSpaceSize, InvalidAccessHandler invalidAccessHandler, bool for64Bit)
|
|
{
|
|
return new ProcessContext(new AddressSpaceManager(addressSpaceSize));
|
|
}
|
|
}
|
|
}
|