Kernel: Remove spammy process/thread exit printing

This commit is contained in:
Bananymous 2023-07-06 10:34:46 +03:00
parent 21bd87bb07
commit 5c6bbcb62f
2 changed files with 0 additions and 4 deletions

View File

@ -102,8 +102,6 @@ namespace Kernel
ASSERT(!m_general_allocator);
ASSERT(m_mapped_ranges.empty());
ASSERT(&PageTable::current() != m_page_table.ptr());
dprintln("process {} exit", pid());
}
void Process::add_thread(Thread* thread)

View File

@ -97,8 +97,6 @@ namespace Kernel
if (m_interrupt_stack)
delete m_interrupt_stack;
m_interrupt_stack = nullptr;
dprintln("thread {} ({}) exit", tid(), m_process->pid());
}
BAN::ErrorOr<Thread*> Thread::clone(Process* new_process, uintptr_t rsp, uintptr_t rip)