diff options
author | Marvin Borner | 2020-05-07 14:29:28 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 14:29:28 +0200 |
commit | 130121dd61a9adf70d1800ceb03007275bfb589d (patch) | |
tree | 5b00d9046c5f5a5678479b0ddf1bdbe72bc74158 /src/kernel/syscall/actions | |
parent | 31767b532e69c5a63df0106fa08e137e3106a449 (diff) |
Added wait syscall
Diffstat (limited to 'src/kernel/syscall/actions')
-rw-r--r-- | src/kernel/syscall/actions/sys_wait.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_wait.c b/src/kernel/syscall/actions/sys_wait.c new file mode 100644 index 0000000..7cea24f --- /dev/null +++ b/src/kernel/syscall/actions/sys_wait.c @@ -0,0 +1,24 @@ +#include <tasks/process.h> + +u32 sys_wait(u32 pid, u32 *status, u32 options) +{ + u32 ret; + + if (pid < 0) { // Wait for any process in gid to die + ret = process_wait_gid(pid * -1, status); + } + + if (pid == -1) { // Wait for any child to be killed + ret = process_wait_gid(current_proc->pid, status); + } + + if (pid == 0) { // Wait for siblings of this process to die + ret = process_wait_gid(current_proc->gid, status); + } + + if (pid > 0) { // Wait for pid to die + ret = process_wait_pid(pid, status); + } + + return ret; +}
\ No newline at end of file |