X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/48b4a227035048fdebcd32532deb7a857c6199ac..58bc147210ab1363ee9ddc169a8e1c46ce24cf29:/lunaix-os/includes/lunaix/proc.h diff --git a/lunaix-os/includes/lunaix/proc.h b/lunaix-os/includes/lunaix/proc.h index f22fd68..eafae4f 100644 --- a/lunaix-os/includes/lunaix/proc.h +++ b/lunaix-os/includes/lunaix/proc.h @@ -2,9 +2,12 @@ #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); #endif /* __LUNAIX_SYS_H */