refactor: add a async read/write variant to device ops, with allow async io to be...
[lunaix-os.git] / lunaix-os / usr / libc / includes / lunaix / lunaix.h
1 #ifndef __LUNAIX_SYS_LUNAIX_H
2 #define __LUNAIX_SYS_LUNAIX_H
3
4 #include <lunaix/types.h>
5 #include <stddef.h>
6
7 void
8 yield();
9
10 pid_t
11 wait(int* status);
12
13 pid_t
14 waitpid(pid_t pid, int* status, int flags);
15
16 void
17 syslog(int level, const char* fmt, ...);
18
19 int
20 realpathat(int fd, char* buf, size_t size);
21
22 #endif /* __LUNAIX_LUNAIX_H */