summaryrefslogtreecommitdiff
path: root/Kernel/Process.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Process.cpp')
-rw-r--r--Kernel/Process.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp
index 14c7b69bcc..ef6b9728f0 100644
--- a/Kernel/Process.cpp
+++ b/Kernel/Process.cpp
@@ -351,7 +351,7 @@ Process::Process(RefPtr<Thread>& first_thread, const String& name, uid_t uid, gi
, m_ppid(ppid)
, m_wait_block_condition(*this)
{
- dbgln<debug_process>("Created new process {}({})", m_name, m_pid.value());
+ dbgln<PROCESS_DEBUG>("Created new process {}({})", m_name, m_pid.value());
m_page_directory = PageDirectory::create_for_userspace(*this, fork_parent ? &fork_parent->page_directory().range_allocator() : nullptr);
@@ -615,7 +615,7 @@ void Process::finalize()
{
ASSERT(Thread::current() == g_finalizer);
- dbgln<debug_process>("Finalizing process {}", *this);
+ dbgln<PROCESS_DEBUG>("Finalizing process {}", *this);
if (is_dumpable()) {
if (m_should_dump_core)