blob: 5e03f2501a0a286a4a20a38ac70a55c1eb69dfd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|