1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:45:07 +00:00

Kernel: Remove debug printing of code segment

This allows us to use the same code for aarch64.
This commit is contained in:
Timon Kruiper 2022-11-02 16:30:12 +01:00 committed by Andrew Kaster
parent ac788a2c8e
commit 5b06925b8a
2 changed files with 7 additions and 22 deletions

View file

@ -1212,7 +1212,7 @@ DispatchSignalResult Thread::dispatch_signal(u8 signal)
regs.set_flags(2 | (regs.rflags & ~safe_eflags_mask));
#endif
dbgln_if(SIGNAL_DEBUG, "Thread in state '{}' has been primed with signal handler {:#04x}:{:p} to deliver {}", state_string(), m_regs.cs, m_regs.ip(), signal);
dbgln_if(SIGNAL_DEBUG, "Thread in state '{}' has been primed with signal handler {:p} to deliver {}", state_string(), m_regs.ip(), signal);
return DispatchSignalResult::Continue;
}