git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: new syscall: sigpending, sigsuspend
[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
#endif /* __LUNAIX_SYS_H */