mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:57:44 +00:00
Kernel: Make sys$socketpair() not take the big lock
This system call mainly accesses the file descriptor table, and this is already guarded by MutexProtected.
This commit is contained in:
parent
164c9617c3
commit
ce6e93d96b
2 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ enum class NeedsBigProcessLock {
|
|||
S(sigsuspend, NeedsBigProcessLock::Yes) \
|
||||
S(sigtimedwait, NeedsBigProcessLock::Yes) \
|
||||
S(socket, NeedsBigProcessLock::Yes) \
|
||||
S(socketpair, NeedsBigProcessLock::Yes) \
|
||||
S(socketpair, NeedsBigProcessLock::No) \
|
||||
S(stat, NeedsBigProcessLock::No) \
|
||||
S(statvfs, NeedsBigProcessLock::No) \
|
||||
S(symlink, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue