2019-02-11 09:30:28 -06:00
|
|
|
#ifndef TASKING_HELPERS_H
|
|
|
|
#define TASKING_HELPERS_H
|
|
|
|
|
2020-07-22 19:37:11 -05:00
|
|
|
#include "../tasking.h"
|
2019-02-11 09:30:28 -06:00
|
|
|
|
2020-07-20 09:51:30 -05:00
|
|
|
void switch_to_thread_asm(Thread* thread);
|
|
|
|
void task_init();
|
2020-07-22 19:26:55 -05:00
|
|
|
void wait_for_unblocked_thread_asm();
|
2019-02-11 09:30:28 -06:00
|
|
|
|
|
|
|
#endif
|