This commit is contained in:
Eggert Jung
2025-07-08 13:53:14 +02:00
parent 370e76bfc4
commit 68cb30210f

View File

@@ -49,7 +49,7 @@ void Scheduler::kill(Thread* that) {
for(uint8_t i=0;i<Core::MAX; i++)
if(dispatcher.lifePointer[i] == that){
LAPIC::IPI::send(i, Core::Interrupt::Vector::ASSASSIN);
DBG << "found thread on Core << dec << static_cast<int>(i) << "! killing...\n" << flush;
DBG << "found thread on Core" << dec << static_cast<int>(i) << "! killing...\n" << flush;
return;
}