kernel: Stop shouting when creating threads
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-01-25 21:25:34 +01:00
parent fd0e29ede5
commit 35501407c1
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -34,7 +34,7 @@ namespace Scheduler
g_idle.stack = idle_stack;
kinfoln("CREATED IDLE THREAD: id %lu with ip %#lx and sp %#lx", g_idle.id, g_idle.ip(), g_idle.sp());
kinfoln("Created idle thread: id %lu with ip %#lx and sp %#lx", g_idle.id, g_idle.ip(), g_idle.sp());
g_current = &g_idle;
}
@ -67,7 +67,7 @@ namespace Scheduler
g_threads.append(thread);
kinfoln("CREATED THREAD: id %lu with ip %#lx and sp %#lx", thread->id, thread->ip(), thread->sp());
kinfoln("Created kernel thread: id %lu with ip %#lx and sp %#lx", thread->id, thread->ip(), thread->sp());
return {};
}
@ -151,7 +151,7 @@ namespace Scheduler
guard.deactivate();
directory_guard.deactivate();
kinfoln("CREATED USERSPACE THREAD: id %lu with ip %#.16lx and sp %#.16lx (ksp %#lx)", thread->id, thread->ip(),
kinfoln("Created userspace thread: id %lu with ip %#.16lx and sp %#.16lx (ksp %#lx)", thread->id, thread->ip(),
thread->sp(), thread->kernel_stack.top());
g_threads.append(thread);