aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-21 12:55:57 -0700
committerChristian Cunningham <cc@localhost>2022-01-21 12:55:57 -0700
commited7b9318bc9ac285250b117f87f47fe7f84af51b (patch)
treeb9f756816219369f17b310065ea26c5bb386f5b4 /include
parent00660fb9143daf7fa04647bccd6047b9bf0f5e48 (diff)
Added scheduling logic
Diffstat (limited to 'include')
-rw-r--r--include/globals.h1
-rw-r--r--include/sys/schedule.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/include/globals.h b/include/globals.h
index b33ebc7..16845d5 100644
--- a/include/globals.h
+++ b/include/globals.h
@@ -4,6 +4,7 @@
#include <sys/schedule.h>
#ifndef GLOBALS_C
+extern unsigned long irqlr;
extern unsigned long cntfrq;
extern unsigned long cmdidx;
extern char cmd[2048];
diff --git a/include/sys/schedule.h b/include/sys/schedule.h
index b153bdb..90e82dd 100644
--- a/include/sys/schedule.h
+++ b/include/sys/schedule.h
@@ -41,7 +41,6 @@ struct ThreadQueues {
};
struct Scheduler {
- void* sp;
struct Thread* rthread;
struct ThreadQueues thread_queues[PRIORITIES];
};