1 contributor
12 lines205 bytes
Newer
Older
-
+
commited
{line.log.rev}
on
8 months ago
37
1
#ifndef ASLEEP_H
2
#define ASLEEP_H
3
#include <stdbool.h>
4
#include "task.h"
5
#include "cor_thread_local.h"
6
7
void ASleep_StartSystem();
8
bool ASleep(float delay, void **value);
9
void ASleep_StopSystem();
10
11
#endif
12