diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 14:40:37 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 14:40:37 -0700 |
commit | e5e023ef7ba4b4ae3dcd04ef632d26fae3a43cae (patch) | |
tree | 79322b0e55f0319390a675637a9fffa71422381c | |
parent | 23034623f5f4ed6fb89794a43b309dc06aa25e5f (diff) |
Fixed free queue not initializing properly
-rw-r--r-- | include/sys/schedule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/schedule.h b/include/sys/schedule.h index 3c0b2bb..52f3c98 100644 --- a/include/sys/schedule.h +++ b/include/sys/schedule.h @@ -2,7 +2,7 @@ #define SYS_SCHEDULE_H #include <lib/queue.h> -#define TQUEUE_MAX 0x80 +#define TQUEUE_MAX 5 #define STACK_SIZE 0x4000 #define TQUEUE_CNT 3 #define PRIORITIES 8 |