aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs
blob: a79978ac4318b25b19d54b071e79355506f39d67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;

namespace Ryujinx.HLE.HOS.Kernel.Process
{
    [Flags]
    enum ProcessCreationFlags
    {
        Is64Bit = 1 << 0,

        AddressSpaceShift = 1,
        AddressSpace32Bit = 0 << AddressSpaceShift,
        AddressSpace64BitDeprecated = 1 << AddressSpaceShift,
        AddressSpace32BitWithoutAlias = 2 << AddressSpaceShift,
        AddressSpace64Bit = 3 << AddressSpaceShift,
        AddressSpaceMask = 7 << AddressSpaceShift,

        EnableDebug = 1 << 4,
        EnableAslr = 1 << 5,
        IsApplication = 1 << 6,
        DeprecatedUseSecureMemory = 1 << 7,

        PoolPartitionShift = 7,
        PoolPartitionApplication = 0 << PoolPartitionShift,
        PoolPartitionApplet = 1 << PoolPartitionShift,
        PoolPartitionSystem = 2 << PoolPartitionShift,
        PoolPartitionSystemNonSecure = 3 << PoolPartitionShift,
        PoolPartitionMask = 0xf << PoolPartitionShift,

        OptimizeMemoryAllocation = 1 << 11,

        All =
            Is64Bit |
            AddressSpaceMask |
            EnableDebug |
            EnableAslr |
            IsApplication |
            DeprecatedUseSecureMemory |
            PoolPartitionMask |
            OptimizeMemoryAllocation
    }
}