fix: separate any i/o to sequential device from caching layer
[lunaix-os.git] / lunaix-os / includes / lunaix / proc.h
1 #ifndef __LUNAIX_SYS_H
2 #define __LUNAIX_SYS_H
3
4 #include <lunaix/syscall.h>
5 #include <lunaix/types.h>
6
7 __LXSYSCALL(void, yield);
8
9 __LXSYSCALL1(pid_t, wait, int*, status);
10
11 __LXSYSCALL3(pid_t, waitpid, pid_t, pid, int*, status, int, options);
12
13 __LXSYSCALL(int, geterrno);
14
15 #endif /* __LUNAIX_SYS_H */