mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
Kernel: Mark sys$chmod() as not needing the big lock
This syscall doesn't access any data that was implicitly protected by the big lock.
This commit is contained in:
parent
aa381c4a67
commit
b4fefedd1d
Notes:
sideshowbarker
2024-07-17 17:40:28 +09:00
Author: https://github.com/awesomekling
Commit: b4fefedd1d
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ enum class NeedsBigProcessLock {
|
|||
S(beep, NeedsBigProcessLock::No) \
|
||||
S(bind, NeedsBigProcessLock::Yes) \
|
||||
S(chdir, NeedsBigProcessLock::No) \
|
||||
S(chmod, NeedsBigProcessLock::Yes) \
|
||||
S(chmod, NeedsBigProcessLock::No) \
|
||||
S(chown, NeedsBigProcessLock::Yes) \
|
||||
S(clock_gettime, NeedsBigProcessLock::No) \
|
||||
S(clock_nanosleep, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue