mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
Kernel: Disable big process lock for sys$sync
This syscall doesn't touch any intra-process shared resources and only calls VirtualFileSystem::sync, which is self-locking.
This commit is contained in:
parent
0d468f2282
commit
9d21c79671
Notes:
sideshowbarker
2024-07-18 07:18:48 +09:00
Author: https://github.com/IdanHo
Commit: 9d21c79671
Pull-request: https://github.com/SerenityOS/serenity/pull/9264
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ enum class NeedsBigProcessLock {
|
|||
S(mkdir, NeedsBigProcessLock::Yes) \
|
||||
S(times, NeedsBigProcessLock::Yes) \
|
||||
S(utime, NeedsBigProcessLock::Yes) \
|
||||
S(sync, NeedsBigProcessLock::Yes) \
|
||||
S(sync, NeedsBigProcessLock::No) \
|
||||
S(ptsname, NeedsBigProcessLock::Yes) \
|
||||
S(select, NeedsBigProcessLock::Yes) \
|
||||
S(unlink, NeedsBigProcessLock::Yes) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue