Kernel: Don't generate a backtrace when a process exists with non-zero

..status
This commit is contained in:
Itamar 2020-12-12 21:20:55 +02:00 committed by Andreas Kling
parent b1e01066fe
commit 1efbbf3ac3
Notes: sideshowbarker 2024-07-19 00:49:42 +09:00

View file

@ -33,11 +33,6 @@ void Process::sys$exit(int status)
{
cli();
if (status != 0) {
dump_backtrace();
set_dump_core(true);
}
m_termination_status = status;
m_termination_signal = 0;
die();