Kernel: Always dump kernel regions when dumping process regions

This commit is contained in:
Andreas Kling 2020-01-18 08:34:28 +01:00
parent 345f92d5ac
commit 19c31d1617
Notes: sideshowbarker 2024-07-19 09:59:25 +09:00
3 changed files with 23 additions and 23 deletions

View file

@ -1266,6 +1266,8 @@ void Process::dump_regions()
region.vmobject().is_purgeable() ? 'P' : ' ',
region.name().characters());
}
MM.dump_kernel_regions();
}
void Process::sys$exit(int status)