2019-05-04 10:41:42 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-02-11 09:47:28 -06:00
|
|
|
void yield() {
|
|
|
|
asm volatile(" \
|
|
|
|
mov $1, %eax; \
|
|
|
|
int $80; \
|
|
|
|
");
|
|
|
|
}
|
2019-02-11 09:48:50 -06:00
|
|
|
|
|
|
|
void createTask(void* task) {
|
|
|
|
asm volatile(" \
|
|
|
|
mov $2, %%eax; \
|
|
|
|
int $80; \
|
|
|
|
"::"b"(task));
|
|
|
|
}
|
2019-05-03 09:33:26 -05:00
|
|
|
|
2019-05-05 13:30:01 -05:00
|
|
|
void createTaskCr3(void* task,void* cr3) {
|
|
|
|
asm volatile(" \
|
|
|
|
mov $9, %%eax; \
|
|
|
|
int $80; \
|
|
|
|
"::"b"(task),"c"(cr3));
|
|
|
|
}
|
2019-05-23 20:41:33 -05:00
|
|
|
|
|
|
|
void createTaskCr3Param(void* task,void* cr3,uint32_t param1,uint32_t param2) {
|
|
|
|
asm volatile(" \
|
|
|
|
mov $12, %%eax; \
|
|
|
|
int $80; \
|
|
|
|
"::"b"(task),"c"(cr3),"d"(param1),"S"(param2));
|
|
|
|
}
|