X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/48b4a227035048fdebcd32532deb7a857c6199ac..fa57b4a05aa12d594f40e0894e0ac6f810a7095c:/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 */