mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-15 10:36:58 +00:00
12 GiB heap support (ryubing/ryujinx!166)
See merge request ryubing/ryujinx!166
This commit is contained in:
parent
2434c55266
commit
1d409f7127
5 changed files with 15 additions and 5 deletions
|
|
@ -124,6 +124,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
KPageList pageList,
|
||||
KResourceLimit resourceLimit,
|
||||
MemoryRegion memRegion,
|
||||
MemoryConfiguration memConfig,
|
||||
IProcessContextFactory contextFactory,
|
||||
ThreadStart customThreadStart = null)
|
||||
{
|
||||
|
|
@ -153,6 +154,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
creationInfo.Flags,
|
||||
!creationInfo.Flags.HasFlag(ProcessCreationFlags.EnableAslr),
|
||||
memRegion,
|
||||
memConfig,
|
||||
codeAddress,
|
||||
codeSize,
|
||||
slabManager);
|
||||
|
|
@ -189,6 +191,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
ReadOnlySpan<uint> capabilities,
|
||||
KResourceLimit resourceLimit,
|
||||
MemoryRegion memRegion,
|
||||
MemoryConfiguration memConfig,
|
||||
IProcessContextFactory contextFactory,
|
||||
ThreadStart customThreadStart = null)
|
||||
{
|
||||
|
|
@ -252,6 +255,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
|||
creationInfo.Flags,
|
||||
!creationInfo.Flags.HasFlag(ProcessCreationFlags.EnableAslr),
|
||||
memRegion,
|
||||
memConfig,
|
||||
codeAddress,
|
||||
codeSize,
|
||||
slabManager);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue