summaryrefslogtreecommitdiff
path: root/src/sys/include/compat/unix
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-13 16:14:02 -0400
committerIan Moffett <ian@osmora.org>2025-10-13 16:14:02 -0400
commitb61c07af798557eff4333716c917c99a4f0c13c6 (patch)
treed48c14f901fbabe0e114f91840aa6406c0623c79 /src/sys/include/compat/unix
parent44bbb86a75043b38bdfb9ed6ff4be0764e3fc905 (diff)
kern: proc: Add initial waitpid() syscall
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/compat/unix')
-rw-r--r--src/sys/include/compat/unix/syscall.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h
index 7a612c3..13bd617 100644
--- a/src/sys/include/compat/unix/syscall.h
+++ b/src/sys/include/compat/unix/syscall.h
@@ -74,7 +74,8 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = {
[SYS_open] = sys_open,
[SYS_muxtap] = sys_muxtap,
[SYS_getargv] = sys_getargv,
- [SYS_reboot] = sys_reboot
+ [SYS_reboot] = sys_reboot,
+ [SYS_waitpid] = sys_waitpid
};
#endif /* !_NEED_UNIX_SCTAB */