diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2021-07-09 06:26:29 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-09 15:36:50 +0200 |
commit | e37f9fa7db38803de565f4aea8bed8dedaa9123f (patch) | |
tree | 1a83c87e8db36529665b60fd41948739ca5d11bf /Kernel/API/Syscall.h | |
parent | ca71d99c66bbc021ea0e28cd2967ba90b32659d1 (diff) | |
download | serenity-e37f9fa7db38803de565f4aea8bed8dedaa9123f.zip |
LibPthread+Kernel: Add pthread_kill() and the thread_kill syscall
Diffstat (limited to 'Kernel/API/Syscall.h')
-rw-r--r-- | Kernel/API/Syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h index 36c28c2611..88854ef726 100644 --- a/Kernel/API/Syscall.h +++ b/Kernel/API/Syscall.h @@ -179,7 +179,8 @@ namespace Kernel { S(readv) \ S(emuctl) \ S(statvfs) \ - S(fstatvfs) + S(fstatvfs) \ + S(kill_thread) namespace Syscall { |