aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall
diff options
context:
space:
mode:
authorMarvin Borner2020-05-12 20:28:08 +0200
committerMarvin Borner2020-05-12 20:28:08 +0200
commit3b16ca421aad772e0f40716e2fc66215d322f7f7 (patch)
treee0f79fd2e3c16ddb80ce2cbdd2fb13036d59687c /src/kernel/syscall
parentb28552c99b9d2bf59407411c9514d18af3d392c0 (diff)
Still searching the bug...
And fixed many other small ones
Diffstat (limited to 'src/kernel/syscall')
-rw-r--r--src/kernel/syscall/actions/sys_wait.c22
1 files changed, 3 insertions, 19 deletions
diff --git a/src/kernel/syscall/actions/sys_wait.c b/src/kernel/syscall/actions/sys_wait.c
index a252d1f..01deef3 100644
--- a/src/kernel/syscall/actions/sys_wait.c
+++ b/src/kernel/syscall/actions/sys_wait.c
@@ -4,23 +4,7 @@
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;
+ if (pid > 0)
+ return process_wait_pid(pid, status);
+ return -1;
} \ No newline at end of file