mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 03:27:59 -05:00
core: hle: kernel: Migrate ProcessState to enum class.
This commit is contained in:
@ -72,14 +72,14 @@ public:
|
||||
~KProcess() override;
|
||||
|
||||
enum class State {
|
||||
Created = Svc::ProcessState_Created,
|
||||
CreatedAttached = Svc::ProcessState_CreatedAttached,
|
||||
Running = Svc::ProcessState_Running,
|
||||
Crashed = Svc::ProcessState_Crashed,
|
||||
RunningAttached = Svc::ProcessState_RunningAttached,
|
||||
Terminating = Svc::ProcessState_Terminating,
|
||||
Terminated = Svc::ProcessState_Terminated,
|
||||
DebugBreak = Svc::ProcessState_DebugBreak,
|
||||
Created = static_cast<u32>(Svc::ProcessState::Created),
|
||||
CreatedAttached = static_cast<u32>(Svc::ProcessState::CreatedAttached),
|
||||
Running = static_cast<u32>(Svc::ProcessState::Running),
|
||||
Crashed = static_cast<u32>(Svc::ProcessState::Crashed),
|
||||
RunningAttached = static_cast<u32>(Svc::ProcessState::RunningAttached),
|
||||
Terminating = static_cast<u32>(Svc::ProcessState::Terminating),
|
||||
Terminated = static_cast<u32>(Svc::ProcessState::Terminated),
|
||||
DebugBreak = static_cast<u32>(Svc::ProcessState::DebugBreak),
|
||||
};
|
||||
|
||||
enum : u64 {
|
||||
|
Reference in New Issue
Block a user