X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/48b4a227035048fdebcd32532deb7a857c6199ac..9461d582084ab8c0d85e8dca1df276945366a84b:/lunaix-os/includes/lunaix/proc.h diff --git a/lunaix-os/includes/lunaix/proc.h b/lunaix-os/includes/lunaix/proc.h index f22fd68..f4de8cf 100644 --- a/lunaix-os/includes/lunaix/proc.h +++ b/lunaix-os/includes/lunaix/proc.h @@ -2,9 +2,14 @@ #define __LUNAIX_SYS_H #include +#include -__LXSYSCALL1(void, exit, int, status) +__LXSYSCALL(void, yield); -__LXSYSCALL(void, yield) +__LXSYSCALL1(pid_t, wait, int*, status); + +__LXSYSCALL3(pid_t, waitpid, pid_t, pid, int*, status, int, options); + +__LXSYSCALL(int, geterrno); #endif /* __LUNAIX_SYS_H */