mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00
Kernel: Remove big lock from sys$socket
With the implementation of the credentials object the socket syscall no longer needs the big lock.
This commit is contained in:
parent
355911c44e
commit
9c1ee8cbd1
2 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ enum class NeedsBigProcessLock {
|
|||
S(sigreturn, NeedsBigProcessLock::Yes) \
|
||||
S(sigsuspend, NeedsBigProcessLock::Yes) \
|
||||
S(sigtimedwait, NeedsBigProcessLock::Yes) \
|
||||
S(socket, NeedsBigProcessLock::Yes) \
|
||||
S(socket, NeedsBigProcessLock::No) \
|
||||
S(socketpair, NeedsBigProcessLock::No) \
|
||||
S(stat, NeedsBigProcessLock::No) \
|
||||
S(statvfs, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue