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:
Idan Horowitz 2021-08-06 14:27:26 +03:00 committed by Andreas Kling
parent da0b7d1737
commit 00818b8447
Notes: sideshowbarker 2024-07-18 07:23:58 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}