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
commit 5b06925b8a
Notes: sideshowbarker 2024-07-17 07:48:42 +09:00
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;
}