diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-31 12:41:04 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-31 12:41:04 -0400 |
commit | 4dc44e8fce222a21f5eb8b86ecb226855c34999b (patch) | |
tree | 83e42cbd2cfde437a35216e9c1ee58c0af995e94 /include/procs.h | |
parent | track changes (diff) | |
download | comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.tar.gz comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.tar.bz2 comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.zip |
track upstream
Diffstat (limited to 'include/procs.h')
-rw-r--r-- | include/procs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/procs.h b/include/procs.h index 9e4d8e6..bc5b705 100644 --- a/include/procs.h +++ b/include/procs.h @@ -205,13 +205,13 @@ extern uint_t next_pid; extern pcb_t *init_pcb; // table of state name strings -extern const char *state_str[N_STATES]; +extern const char state_str[N_STATES][4]; // table of priority name strings -extern const char *prio_str[N_PRIOS]; +extern const char prio_str[N_PRIOS][5]; // table of queue ordering name strings -extern const char *ord_str[N_ORDERINGS]; +extern const char ord_str[N_ORDERINGS][5]; /* ** Prototypes |