diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-14 21:22:56 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-14 21:27:55 -0400 |
commit | 9d3b3b602fc20246dda2a29c0926babbf1ea7fcd (patch) | |
tree | be8513b85127429b362254ff8314a3ec9d5f911d /src/sys/include/compat | |
parent | 58af5dfa5771045850be3086a2da18be44d3077a (diff) |
kern: dms: Add initial DMS engine sources
The DMS engine handles performing I/O based on specific opcodes given to
it and drives the callback wrappers.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/compat')
-rw-r--r-- | src/sys/include/compat/unix/syscall.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h index 13bd617..8b7e7d7 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -36,6 +36,7 @@ #include <sys/syscall.h> #include <os/iotap.h> #include <os/reboot.h> +#include <dms/dms.h> /* * Exit the current process - exit(2) syscall @@ -75,7 +76,8 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = { [SYS_muxtap] = sys_muxtap, [SYS_getargv] = sys_getargv, [SYS_reboot] = sys_reboot, - [SYS_waitpid] = sys_waitpid + [SYS_waitpid] = sys_waitpid, + [SYS_dmsio] = sys_dmsio }; #endif /* !_NEED_UNIX_SCTAB */ |