diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 14:39:53 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 14:39:53 -0700 |
commit | 23034623f5f4ed6fb89794a43b309dc06aa25e5f (patch) | |
tree | 2ec3e5fcdfe0fe0262f17575bd5300964fb1eb2f /include | |
parent | 3068d3d536ef4b1887f67f14ef853ef967504730 (diff) |
Fixed free queue not initializing properly
Diffstat (limited to 'include')
-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 18b2f7f..3c0b2bb 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 0x800 +#define TQUEUE_MAX 0x80 #define STACK_SIZE 0x4000 #define TQUEUE_CNT 3 #define PRIORITIES 8 |