diff options
| author | Ian Moffett <ian@osmora.org> | 2025-10-23 19:37:46 -0400 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-10-23 19:38:30 -0400 |
| commit | d4bf8c00f8cb2fec953bbf184b2f4da667c07d76 (patch) | |
| tree | 837d3b824bb9bd2da2e744a51af23ede7e71534f /src/sys/include/compat/unix | |
| parent | 47fb5dc037d368cd374562df21200dd33665343f (diff) | |
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 | 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 5df3c51..4c388d4 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -37,6 +37,7 @@ #include <sys/syscall.h> #include <os/ucred.h> #include <os/iotap.h> +#include <os/sleep.h> #include <os/reboot.h> #include <dms/dms.h> #include <vm/map.h> @@ -102,7 +103,8 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = { [SYS_socket] = sys_socket, [SYS_listen] = sys_listen, [SYS_seteuid] = sys_seteuid, - [SYS_mmap] = sys_mmap + [SYS_mmap] = sys_mmap, + [SYS_usleep] = sys_usleep }; #endif /* !_NEED_UNIX_SCTAB */ |
