blob: 86beed349eddb0db15f524e71fcdd06952821eda (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdint.h>
struct taskregs_t {
uint32_t eax, ebx, ecx, edx, esi, edi, esp, ebp, eip, eflags, cr3;
};
struct task_t {
struct taskregs_t regs;
struct task_t *next;
};
|