mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 04:52:39 +02:00
Reword ProcessState enum fields
This commit is contained in:
parent
67886bb3df
commit
3bd7ca5f7e
@ -122,11 +122,11 @@ typedef enum {
|
|||||||
|
|
||||||
/// Process States.
|
/// Process States.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ProcessState_Created=0, ///<Newly-created process.
|
ProcessState_Created=0, ///<Newly-created process, not yet started.
|
||||||
ProcessState_DebugAttached=1, ///<Process attached to debugger.
|
ProcessState_CreatedAttached=1, ///<Newly-created process, not yet started but attached to debugger.
|
||||||
ProcessState_DebugDetached=2, ///<Process detached from debugger.
|
ProcessState_Running=2, ///<Process that is running normally (and detached from any debugger).
|
||||||
ProcessState_Crashed=3, ///<Process that has just creashed.
|
ProcessState_Crashed=3, ///<Process that has just crashed.
|
||||||
ProcessState_Running=4, ///<Process executing normally.
|
ProcessState_RunningAttached=4, ///<Process that is running normally, attached to a debugger.
|
||||||
ProcessState_Exiting=5, ///<Process has begun exiting.
|
ProcessState_Exiting=5, ///<Process has begun exiting.
|
||||||
ProcessState_Exited=6, ///<Process has finished exiting.
|
ProcessState_Exited=6, ///<Process has finished exiting.
|
||||||
ProcessState_DebugSuspended=7, ///<Process execution suspended by debugger.
|
ProcessState_DebugSuspended=7, ///<Process execution suspended by debugger.
|
||||||
|
Loading…
Reference in New Issue
Block a user