diff options
Diffstat (limited to 'src/sys/include/compat/unix/syscall.h')
-rw-r--r-- | src/sys/include/compat/unix/syscall.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h index 88c86ba..d39f627 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -49,12 +49,18 @@ scret_t sys_write(struct syscall_args *scargs); */ scret_t sys_cross(struct syscall_args *scargs); +/* + * Query a syscall border - L5 mandatory + */ +scret_t sys_query(struct syscall_args *scargs); + #ifdef _NEED_UNIX_SCTAB scret_t(*g_unix_sctab[])(struct syscall_args *) = { [SYS_none] = NULL, [SYS_exit] = sys_exit, [SYS_write] = sys_write, - [SYS_cross] = sys_cross + [SYS_cross] = sys_cross, + [SYS_query] = sys_query }; #endif /* !_NEED_UNIX_SCTAB */ |