mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 14:12:52 +00:00
Kernel: Disable big process lock for sys$dump_backtrace()
This syscall only dumps the current thread's backtrace and as such doesn't touch any shared intra-process resources.
This commit is contained in:
parent
da0b7d1737
commit
00818b8447
Notes:
sideshowbarker
2024-07-18 07:23:58 +09:00
Author: https://github.com/IdanHo
Commit: 00818b8447
Pull-request: https://github.com/SerenityOS/serenity/pull/9236
Reviewed-by: https://github.com/tomuta ✅
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ namespace Kernel {
|
|||
|
||||
KResultOr<FlatPtr> Process::sys$dump_backtrace()
|
||||
{
|
||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
||||
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
||||
dump_backtrace();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue