Ryujinx/Ryujinx.HLE/HOS/Kernel/ProcessState.cs
2018-12-01 14:38:15 -06:00

14 lines
No EOL
317 B
C#

namespace Ryujinx.HLE.HOS.Kernel
{
internal enum ProcessState : byte
{
Created = 0,
CreatedAttached = 1,
Started = 2,
Crashed = 3,
Attached = 4,
Exiting = 5,
Exited = 6,
DebugSuspended = 7
}
}