diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-05 19:18:14 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-05 19:20:18 -0400 |
commit | ff859b8e0c72910aa1b7635c839642fcfb9c1c8a (patch) | |
tree | 36a4bb91c3b21960a56a3438cad0630a65042a51 /src/sys/include/compat/unix | |
parent | 25bac8d254d55b8f752f8e605cb707475281b6a1 (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.h | 3 |
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 */ |