diff options
author | Christian Cunningham <cc@localhost> | 2022-01-23 16:23:56 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-23 16:23:56 -0700 |
commit | 741e7431d013c7fda4a1b8b34bcc2dfa1ecda039 (patch) | |
tree | 0301b7de87c34e13b3028e80fbf34bb93c2d58c6 /include/sys | |
parent | 1b005b885a713199106587f3e6d8f53f0ecfdfcd (diff) |
Visual view of memory map
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/schedule.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/schedule.h b/include/sys/schedule.h index d28ea6d..8a68e05 100644 --- a/include/sys/schedule.h +++ b/include/sys/schedule.h @@ -6,6 +6,9 @@ #define TQUEUE_CNT 5 #define PRIORITIES 6 #define MAX_THREADS TQUEUE_MAX*PRIORITIES*TQUEUE_CNT +#define STACK_DRAW_YOFF 320 +#define STACK_DRAW_WIDTH 32 +#define STACK_DRAW_SIZE 3 enum ThreadStatus { THREAD_READY = 0, |