mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
Kernel: Use kernelputstr instead of dbgln when printing backtraces
This will allow us to eventually switch dbgln in the kernel to an allocation-free (although length-bounded) formatter.
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
#include <Kernel/Thread.h>
|
||||
#include <Kernel/ThreadTracer.h>
|
||||
#include <Kernel/TimerQueue.h>
|
||||
#include <Kernel/kstdio.h>
|
||||
#include <LibC/signal_numbers.h>
|
||||
|
||||
namespace Kernel {
|
||||
@@ -501,8 +502,14 @@ void Thread::finalize()
|
||||
m_join_blocker_set.thread_finalizing();
|
||||
}
|
||||
|
||||
if (m_dump_backtrace_on_finalization)
|
||||
dbgln("{}", backtrace());
|
||||
if (m_dump_backtrace_on_finalization) {
|
||||
auto trace_or_error = backtrace();
|
||||
if (!trace_or_error.is_error()) {
|
||||
auto trace = trace_or_error.release_value();
|
||||
dbgln("Backtrace:");
|
||||
kernelputstr(trace->characters(), trace->length());
|
||||
}
|
||||
}
|
||||
|
||||
drop_thread_count(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user