Features
Pricing
Sign in
Sign up
Code
Issues
Merge requests
Processes
Insights
Settings
Like
0
Fork
That couldn't be done
Upload
0
/
0
Success
0 branches
0 tags
37
Split down into component parts
jonroach
23 Sep 2025 10:05
1 contributor
12 lines
205 bytes
Text
Raw
Blame
Delete
Delete asleep.h
Delete checkin message
Delete
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