summaryrefslogtreecommitdiff
path: root/Kernel/API/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2023-04-03 16:35:21 +0200
committerAndreas Kling <kling@serenityos.org>2023-04-04 10:33:42 +0200
commit6c02c493f104e866b8790df978a11972966a8d0a (patch)
treeba6903874a6a014f287c67c299236a910cb8c898 /Kernel/API/Syscall.h
parentf0b5c585f27c269b12bde5553d71ba773797be04 (diff)
downloadserenity-6c02c493f104e866b8790df978a11972966a8d0a.zip
Kernel: Mark sys$sigtimedwait as not needing the big lock
Yet another syscall that only messes with 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 65c8957bf8..20887f17c0 100644
--- a/Kernel/API/Syscall.h
+++ b/Kernel/API/Syscall.h
@@ -180,7 +180,7 @@ enum class NeedsBigProcessLock {
S(sigprocmask, NeedsBigProcessLock::No) \
S(sigreturn, NeedsBigProcessLock::No) \
S(sigsuspend, NeedsBigProcessLock::No) \
- S(sigtimedwait, NeedsBigProcessLock::Yes) \
+ S(sigtimedwait, NeedsBigProcessLock::No) \
S(socket, NeedsBigProcessLock::No) \
S(socketpair, NeedsBigProcessLock::No) \
S(stat, NeedsBigProcessLock::No) \