aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/arch/x86/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'extras/mini-os/arch/x86/time.c')
-rw-r--r--extras/mini-os/arch/x86/time.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/mini-os/arch/x86/time.c b/extras/mini-os/arch/x86/time.c
index c8313705ae..a396dc279f 100644
--- a/extras/mini-os/arch/x86/time.c
+++ b/extras/mini-os/arch/x86/time.c
@@ -222,6 +222,8 @@ static void timer_handler(evtchn_port_t ev, struct pt_regs *regs, void *ign)
void init_time(void)
{
+ evtchn_port_t port;
printk("Initialising timer interface\n");
- bind_virq(VIRQ_TIMER, &timer_handler, NULL);
+ port = bind_virq(VIRQ_TIMER, &timer_handler, NULL);
+ unmask_evtchn(port);
}