Subversion Repositories HelenOS

Rev

Rev 1888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1888 Rev 1937
Line 192... Line 192...
192
{
192
{
193
    ipc_irq_send_notif(n-IVT_IRQBASE);
193
    ipc_irq_send_notif(n-IVT_IRQBASE);
194
    trap_virtual_eoi();
194
    trap_virtual_eoi();
195
}
195
}
196
 
196
 
197
 
-
 
198
/* Reregister irq to be IPC-ready */
-
 
199
void irq_ipc_bind_arch(unative_t irq)
-
 
200
{
-
 
201
    if (irq == IRQ_CLK)
-
 
202
        return;
-
 
203
    exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
-
 
204
    trap_virtual_enable_irqs(1 << irq);
-
 
205
}
-
 
206
 
-
 
207
/** @}
197
/** @}
208
 */
198
 */