aboutsummaryrefslogtreecommitdiff
path: root/src/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/irq.c')
-rw-r--r--src/irq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irq.c b/src/irq.c
index 8d01fbd..73ae88d 100644
--- a/src/irq.c
+++ b/src/irq.c
@@ -67,12 +67,12 @@ void handle_irq()
struct tcb *t = get_tcb(tid);
if (!t) {
error("tcb %llu dead at irq %llu\n",
- (unsigned long long)tid,
- (unsigned long long)id);
+ (unsigned long long)tid,
+ (unsigned long long)id);
return;
}
disable_irqs();
- notify(t);
+ notify(t, NOTIFY_IRQ);
error("misc error when trying to notify irq");
}