From ea9aa8c674e4665949767fd9130ec97160545b60 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sun, 13 Oct 2024 15:15:32 +0300 Subject: [PATCH] kshell: Update error messages --- kshell/shell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kshell/shell.cpp b/kshell/shell.cpp index 77c659e4..95494f9c 100644 --- a/kshell/shell.cpp +++ b/kshell/shell.cpp @@ -601,14 +601,14 @@ void KShellThread() pcb = TaskManager->GetProcessByID(ret); if (pcb == nullptr) { - printf("Failed to get process by ID\n"); + printf("KShell: Failed to get process by ID\n"); continue; } pcb->SetWorkingDirectory(cwd); tcb = TaskManager->GetThreadByID(ret, pcb); if (tcb == nullptr) { - printf("Failed to get thread by ID\n"); + printf("KShell: Failed to get thread by ID\n"); continue; } TaskManager->WaitForThread(tcb);