getting there...

This commit is contained in:
2026-07-04 00:26:20 -05:00
parent ab5a1ecb6b
commit 0b98ac0273
6 changed files with 49 additions and 61 deletions

View File

@@ -4,10 +4,10 @@
#include <stdint.h>
typedef enum {
STATE_READY,
STATE_SLEEPING,
STATE_BLOCKED,
STATE_DEAD
STATE_READY = 1,
STATE_SLEEPING = 2,
STATE_BLOCKED = 3,
STATE_DEAD = 4,
} process_state_t;
typedef enum {