1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 11:28:11 +00:00

Kernel: Combine Thread::backtrace() and backtrace_impl() into one

This commit is contained in:
Andreas Kling 2021-02-07 17:58:29 +01:00
parent fd3eca3acc
commit 5c45b0d32d
2 changed files with 3 additions and 10 deletions

View file

@ -126,8 +126,6 @@ public:
Process& process() { return m_process; }
const Process& process() const { return m_process; }
String backtrace();
String name() const
{
// Because the name can be changed, we can't return a const
@ -1231,7 +1229,7 @@ private:
LockMode unlock_process_if_locked(u32&);
void relock_process(LockMode, u32);
String backtrace_impl();
String backtrace();
void reset_fpu_state();
mutable RecursiveSpinLock m_lock;