kernl
ReferencekernlType aliases

Type Alias: ThreadState

type ThreadState = 
  | typeof RUNNING
  | typeof STOPPED
  | typeof INTERRUPTIBLE
  | typeof UNINTERRUPTIBLE
  | typeof ZOMBIE
  | typeof DEAD;

Defined in: packages/kernl/src/thread/types.ts:60

Thread state discriminated union

On this page