summaryrefslogtreecommitdiff
path: root/Kernel/API/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2023-04-03 16:26:11 +0200
committerAndreas Kling <kling@serenityos.org>2023-04-04 10:33:42 +0200
commitf0b5c585f27c269b12bde5553d71ba773797be04 (patch)
tree0e5e8259f6da3a33523e220cd107e46a8f55cde8 /Kernel/API/Syscall.h
parente9fe0ecbae839989cf73171ca35d4070ac3fb8af (diff)
downloadserenity-f0b5c585f27c269b12bde5553d71ba773797be04.zip
Kernel: Mark sys$sigpending as not needing the big lock
Another one that only touches the current thread.
Diffstat (limited to 'Kernel/API/Syscall.h')
-rw-r--r--Kernel/API/Syscall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h
index 2c024fbb69..65c8957bf8 100644
--- a/Kernel/API/Syscall.h
+++ b/Kernel/API/Syscall.h
@@ -176,7 +176,7 @@ enum class NeedsBigProcessLock {
S(shutdown, NeedsBigProcessLock::No) \
S(sigaction, NeedsBigProcessLock::Yes) \
S(sigaltstack, NeedsBigProcessLock::Yes) \
- S(sigpending, NeedsBigProcessLock::Yes) \
+ S(sigpending, NeedsBigProcessLock::No) \
S(sigprocmask, NeedsBigProcessLock::No) \
S(sigreturn, NeedsBigProcessLock::No) \
S(sigsuspend, NeedsBigProcessLock::No) \