From 19d9a04e36e7fb96eebe89e24311408460c29a70 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 30 Sep 2024 11:08:46 -0400 Subject: reorganize files --- src/tasking.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tasking.hpp (limited to 'src/tasking.hpp') diff --git a/src/tasking.hpp b/src/tasking.hpp new file mode 100644 index 0000000..64a738e --- /dev/null +++ b/src/tasking.hpp @@ -0,0 +1,12 @@ +#ifndef TASKING_HPP +#define TASKING_HPP + +#include "idt.hpp" + +void tasking_initialize(); +bool tasking_spawn(void (*entry)(), unsigned ssize); + +void schedule(const Registers& regs); + +#endif // TASKING_HPP + -- cgit v1.2.3