os/kernel/cpu/i386/tasking_helpers.h

10 lines
136 B
C
Raw Normal View History

2019-02-11 09:30:28 -06:00
#ifndef TASKING_HELPERS_H
#define TASKING_HELPERS_H
#include "tasking.h"
2019-06-29 09:04:34 -05:00
void switch_to_task(Task* task);
2019-02-11 09:30:28 -06:00
uint32_t readEip();
#endif