aboutsummaryrefslogtreecommitdiff
path: root/src/sys/schedule.ll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/schedule.ll.c')
-rw-r--r--src/sys/schedule.ll.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/sys/schedule.ll.c b/src/sys/schedule.ll.c
new file mode 100644
index 0000000..d9ab954
--- /dev/null
+++ b/src/sys/schedule.ll.c
@@ -0,0 +1,13 @@
+#ifdef LL
+
+#include "../sys/schedule.h"
+#include "../lib/ll.h"
+static struct LL bl = {
+ .prev = 0,
+ .next = 0,
+};
+static struct Scheduler scheduler = {
+ .tasks = &bl,
+};
+
+#endif