Reword ProcessState enum fields

This commit is contained in:
TuxSH 2018-09-21 00:43:10 +02:00 committed by fincs
parent 67886bb3df
commit 3bd7ca5f7e

View File

@ -122,14 +122,14 @@ 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.
} ProcessState; } ProcessState;
/// Debug Thread Parameters. /// Debug Thread Parameters.