diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-07-27 18:39:54 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-07-27 18:39:54 +0300 |
| commit | a26fb216729ba7a7d0fbfc97c2082c9db512aa36 (patch) | |
| tree | deb10d29615187bb0788b7b5ae82004909add3e5 /common/uapi/dispatch.c | |
| parent | 8701c9b47319202e845fb12b3e7f7bc829b4c144 (diff) | |
| download | kmi-a26fb216729ba7a7d0fbfc97c2082c9db512aa36.tar.gz kmi-a26fb216729ba7a7d0fbfc97c2082c9db512aa36.zip | |
add ipc_kick
+ Tests will have to come later
Diffstat (limited to 'common/uapi/dispatch.c')
| -rw-r--r-- | common/uapi/dispatch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/uapi/dispatch.c b/common/uapi/dispatch.c index 8ffbf54..d071db3 100644 --- a/common/uapi/dispatch.c +++ b/common/uapi/dispatch.c @@ -61,6 +61,7 @@ void handle_syscall(sys_arg_t syscall, sys_arg_t a, sys_arg_t b, case SYS_IPC_SERVER: sys_ipc_server(t, a, b, c, d, e); break; case SYS_IPC_REQ: sys_ipc_req(t, a, b, c, d, e); break; case SYS_IPC_FWD: sys_ipc_fwd(t, a, b, c, d, e); break; + case SYS_IPC_KICK: sys_ipc_kick(t, a, b, c, d, e); break; case SYS_IPC_RESP: sys_ipc_resp(t, a, b, c, d, e); break; case SYS_IPC_NOTIFY: sys_ipc_notify(t, a, b, c, d, e); break; case SYS_CREATE: sys_create(t, a, b, c, d, e); break; |
