KallistiOS  ##version##
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
Macros
Thread states

Macros

#define STATE_ZOMBIE   0x0000
 Waiting to die. More...
 
#define STATE_RUNNING   0x0001
 Process is "current". More...
 
#define STATE_READY   0x0002
 Ready to be scheduled. More...
 
#define STATE_WAIT   0x0003
 Blocked on a genwait. More...
 
#define STATE_FINISHED   0x0004
 Finished execution. More...
 

Detailed Description

Each thread in the system is in exactly one of this set of states.

Macro Definition Documentation

#define STATE_FINISHED   0x0004

Finished execution.

#define STATE_READY   0x0002

Ready to be scheduled.

#define STATE_RUNNING   0x0001

Process is "current".

#define STATE_WAIT   0x0003

Blocked on a genwait.

#define STATE_ZOMBIE   0x0000

Waiting to die.