blob: 64a738ef486282ab08d174b15670c39e92bae855 (
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(const Registers& regs);
#endif // TASKING_HPP
|