1 contributor
12 lines205 bytes
1#ifndef ASLEEP_H
2#define ASLEEP_H
3#include <stdbool.h>
4#include "task.h"
5#include "cor_thread_local.h"
6
7void ASleep_StartSystem();
8bool ASleep(float delay, void **value);
9void ASleep_StopSystem();
10
11#endif
12