os/kernel/cpu/tasking.h

13 lines
263 B
C
Raw Normal View History

#ifndef CPU_TASKING_H
#define CPU_TASKING_H
2019-02-25 15:42:23 -06:00
2019-02-11 09:30:28 -06:00
#include "i386/tasking.h"
2019-05-11 10:11:28 -05:00
#include "i386/isr.h"
2019-02-11 09:30:28 -06:00
void tasking_init();
2019-05-21 19:16:19 -05:00
void tasking_yield();
Task* tasking_createTask(void* eip);
2019-05-05 13:30:01 -05:00
Task* tasking_createTaskCr3(void* eip,void* cr3);
2019-02-25 15:42:23 -06:00
char isPrivleged(uint32_t pid);
2019-02-11 09:30:28 -06:00
#endif