From ff859b8e0c72910aa1b7635c839642fcfb9c1c8a Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 5 Oct 2025 19:18:14 -0400 Subject: kern: syscall: Add initial SYS_spawn syscall Signed-off-by: Ian Moffett --- src/sys/include/compat/unix/syscall.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/sys/include/compat/unix/syscall.h') 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 */ -- cgit v1.2.3