summaryrefslogtreecommitdiff
path: root/src/sys/include/compat/unix
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-05 19:18:14 -0400
committerIan Moffett <ian@osmora.org>2025-10-05 19:20:18 -0400
commitff859b8e0c72910aa1b7635c839642fcfb9c1c8a (patch)
tree36a4bb91c3b21960a56a3438cad0630a65042a51 /src/sys/include/compat/unix
parent25bac8d254d55b8f752f8e605cb707475281b6a1 (diff)
kern: syscall: Add initial SYS_spawn 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 d39f627..ab464c4 100644
--- a/src/sys/include/compat/unix/syscall.h
+++ b/src/sys/include/compat/unix/syscall.h
@@ -60,7 +60,8 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = {
[SYS_exit] = sys_exit,
[SYS_write] = sys_write,
[SYS_cross] = sys_cross,
- [SYS_query] = sys_query
+ [SYS_query] = sys_query,
+ [SYS_spawn] = sys_spawn
};
#endif /* !_NEED_UNIX_SCTAB */