mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +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:
parent
f0b5c585f2
commit
6c02c493f1
2 changed files with 2 additions and 2 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue