aboutsummaryrefslogtreecommitdiff
path: root/src/sys/schedule.c
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 /src/sys/schedule.c
parent00660fb9143daf7fa04647bccd6047b9bf0f5e48 (diff)
Added scheduling logic
Diffstat (limited to 'src/sys/schedule.c')
-rw-r--r--src/sys/schedule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/schedule.c b/src/sys/schedule.c
index 96dc678..0dc89e9 100644
--- a/src/sys/schedule.c
+++ b/src/sys/schedule.c
@@ -1,3 +1,5 @@
void init_scheduler(void)
{
+ // Set rthread to usrloopthread - an infinitely running thread so that the pointer will never be null
+ // Initialize Rotating Buffers
}