os/kernel/cpu/tasking.h

13 lines
362 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-06-29 09:04:34 -05:00
Task* tasking_createTaskCr3KmodeParam(void* eip,void* cr3,char kmode,char param1_exists,uint32_t param1_arg,char param2_exists,uint32_t param2_arg);
2019-02-25 15:42:23 -06:00
char isPrivleged(uint32_t pid);
2019-02-11 09:30:28 -06:00
#endif