diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-20 15:59:25 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-20 15:59:25 +0300 |
| commit | ba8c7b300fbbf062453ef8858fac0f84dd25a518 (patch) | |
| tree | eecee0c15a2314e8bf318559d173bf2bb28a61f6 /common/uapi/proc.c | |
| parent | d2f2714398d415eb9a628aab82b332b92ad5c923 (diff) | |
| download | kmi-ba8c7b300fbbf062453ef8858fac0f84dd25a518.tar.gz kmi-ba8c7b300fbbf062453ef8858fac0f84dd25a518.zip | |
add notify syscall skeleton
+ Now to actually start implementing shit. :)
Diffstat (limited to 'common/uapi/proc.c')
| -rw-r--r-- | common/uapi/proc.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/common/uapi/proc.c b/common/uapi/proc.c index ba9fb76..67fe141 100644 --- a/common/uapi/proc.c +++ b/common/uapi/proc.c @@ -95,20 +95,6 @@ SYSCALL_DEFINE0(kill)() } /** - * Signal syscall handler. - * - * \todo Implement. - * - * @param tid Thread ID to signal. - * @param signal Signal to send to \c tid. - * @param swap Whether to immediately swap to thread. - * @return \ref OK and 0. - */ -SYSCALL_DEFINE3(signal)(sys_arg_t tid, sys_arg_t signal, sys_arg_t swap){ - return (struct sys_ret){ OK, 0, 0, 0, 0, 0 }; -} - -/** * Swap syscall handler. * * \todo Implement. |
