mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
Kernel: Mark sys$fork as not needing the big lock
All shared structures are already protected by "atomic" spinlocks for those structures, so there's no need to take the big process lock.
This commit is contained in:
parent
0be79f9bc2
commit
46ef2f8e20
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ enum class NeedsBigProcessLock {
|
|||
S(fchmod, NeedsBigProcessLock::No) \
|
||||
S(fchown, NeedsBigProcessLock::No) \
|
||||
S(fcntl, NeedsBigProcessLock::No) \
|
||||
S(fork, NeedsBigProcessLock::Yes) \
|
||||
S(fork, NeedsBigProcessLock::No) \
|
||||
S(fstat, NeedsBigProcessLock::No) \
|
||||
S(fstatvfs, NeedsBigProcessLock::No) \
|
||||
S(fsync, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue