diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 06:02:49 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 06:02:49 -0400 |
commit | d43d7caf15a01dd9c2ef1d9e975df3ef7c4e9204 (patch) | |
tree | aaf1f0f3a18b6f7b3fc25022e06941a9fb4fa612 /tasking.hpp |
wip: initial commit
Diffstat (limited to 'tasking.hpp')
-rw-r--r-- | tasking.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tasking.hpp b/tasking.hpp new file mode 100644 index 0000000..5e03f25 --- /dev/null +++ b/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(Registers& regs); + +#endif // TASKING_HPP + |