Enumerations

enum class ThreadState : uint8_t
Name Value Comments
kInitial 0

The thread is in its initialed state and not yet schedulable.

kReady 1

The thread is schedulable and not yet running.

kRunning 2

The thread is currently running (or selected to be run).

kBlocked 3

The thread is blocked.

The scheduling state of a thread.

Defined at line 58 of file ../../zircon/kernel/lib/sched/include/lib/sched/thread-base.h

Records