X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/86a9cfeadbbe180abf6c8bd8c64c86957fdacfeb..7515e526342f6ee07cbe92f5a458f1c2c4a1fcaf:/lunaix-os/includes/lunaix/lunistd.h diff --git a/lunaix-os/includes/lunaix/lunistd.h b/lunaix-os/includes/lunaix/lunistd.h index a7ac03b..c16f2b0 100644 --- a/lunaix-os/includes/lunaix/lunistd.h +++ b/lunaix-os/includes/lunaix/lunistd.h @@ -8,7 +8,7 @@ __LXSYSCALL(pid_t, fork) __LXSYSCALL1(int, sbrk, void*, addr) -__LXSYSCALL1(void*, brk, size_t, size) +__LXSYSCALL1(void*, brk, unsigned long, size) __LXSYSCALL(pid_t, getpid) @@ -18,6 +18,10 @@ __LXSYSCALL1(void, _exit, int, status) __LXSYSCALL1(unsigned int, sleep, unsigned int, seconds) -__LXSYSCALL1(pid_t, wait, int*, status); +__LXSYSCALL(int, pause) + +__LXSYSCALL2(int, kill, pid_t, pid, int, signum) + +__LXSYSCALL1(unsigned int, alarm, unsigned int, seconds) #endif /* __LUNAIX_UNISTD_H */