diff options
author | Christian Cunningham <cc@localhost> | 2022-01-21 12:55:57 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-21 12:55:57 -0700 |
commit | ed7b9318bc9ac285250b117f87f47fe7f84af51b (patch) | |
tree | b9f756816219369f17b310065ea26c5bb386f5b4 /src/sys/schedule.c | |
parent | 00660fb9143daf7fa04647bccd6047b9bf0f5e48 (diff) |
Added scheduling logic
Diffstat (limited to 'src/sys/schedule.c')
-rw-r--r-- | src/sys/schedule.c | 2 |
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 } |