1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +00:00

Kernel: Mark sys$sigtimedwait as not needing the big lock

Yet another syscall that only messes with the current thread.
This commit is contained in:
Andreas Kling 2023-04-03 16:35:21 +02:00
parent f0b5c585f2
commit 6c02c493f1
2 changed files with 2 additions and 2 deletions

View file

@ -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) \