mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:37:37 +00:00
Kernel: Make sys$pipe() 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
0b58fd5aef
commit
307932857e
2 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ enum class NeedsBigProcessLock {
|
|||
S(open, NeedsBigProcessLock::Yes) \
|
||||
S(perf_event, NeedsBigProcessLock::Yes) \
|
||||
S(perf_register_string, NeedsBigProcessLock::Yes) \
|
||||
S(pipe, NeedsBigProcessLock::Yes) \
|
||||
S(pipe, NeedsBigProcessLock::No) \
|
||||
S(pledge, NeedsBigProcessLock::Yes) \
|
||||
S(poll, NeedsBigProcessLock::Yes) \
|
||||
S(posix_fallocate, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue