Kernel: Print process pid through /dev/debug

This commit is contained in:
Bananymous 2025-04-01 22:58:27 +03:00
parent aebacb6b6a
commit 95f262b3e6
1 changed files with 2 additions and 1 deletions

View File

@ -21,9 +21,10 @@ namespace Kernel
{
auto ms_since_boot = SystemTimer::get().ms_since_boot();
SpinLockGuard _(Debug::s_debug_lock);
BAN::Formatter::print(Debug::putchar, "[{5}.{3}] {}: ",
BAN::Formatter::print(Debug::putchar, "[{5}.{3}] {} {}: ",
ms_since_boot / 1000,
ms_since_boot % 1000,
Kernel::Process::current().pid(),
Kernel::Process::current().name()
);
for (size_t i = 0; i < buffer.size(); i++)