aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-19 17:05:35 -0700
committerChristian Cunningham <cc@localhost>2022-03-19 17:05:35 -0700
commit63ab4d75778c19a9216a0ce5eba9a5288e7ed4a6 (patch)
treebb634e412cd40c17b3ecdfa93a50fe1e0fe3a69a /include
parent2db90ba9e12c66d786bf17d05210b36052976398 (diff)
Removed old defines
Removed old symbols
Diffstat (limited to 'include')
-rw-r--r--include/sys/schedule.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sys/schedule.h b/include/sys/schedule.h
index 18b2f7f..210ab3f 100644
--- a/include/sys/schedule.h
+++ b/include/sys/schedule.h
@@ -2,11 +2,10 @@
#define SYS_SCHEDULE_H
#include <lib/queue.h>
-#define TQUEUE_MAX 0x800
+#define TQUEUE_MAX 0x400
#define STACK_SIZE 0x4000
-#define TQUEUE_CNT 3
#define PRIORITIES 8
-#define MAX_THREADS TQUEUE_MAX*PRIORITIES*TQUEUE_CNT
+#define MAX_THREADS TQUEUE_MAX*PRIORITIES
enum ThreadStatus {
THREAD_READY = 0,