diff options
Diffstat (limited to 'src/kernel/workitem.C')
-rw-r--r-- | src/kernel/workitem.C | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/kernel/workitem.C b/src/kernel/workitem.C index a66908514..0edf83083 100644 --- a/src/kernel/workitem.C +++ b/src/kernel/workitem.C @@ -33,20 +33,10 @@ void CpuWakeupDoorbellWorkItem::operator() (void) { size_t pir = getPIR(); - printk("Wkup pir %ld done\n", pir); + printkd("Wkup pir %ld done\n", pir); //Send message to the intrrp in userspace indicating this pir has woken up // There is a task associated with the intrrp that monitors that the proper // cores/threads have woken up InterruptMsgHdlr::sendThreadWakeupMsg(pir); return; } - -void IPCDoorbellWorkItem::operator() (void) -{ - size_t pir = getPIR(); - printk("IPC msg pir %ld done\n", pir); - //Send message tot he intrrp in userspace indicating it has a pending IPC - // message. - InterruptMsgHdlr::sendIpcMsg(pir); - return; -} |