Subversion Repositories HelenOS-historic

Rev

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

Rev 1705 Rev 1724
Line 199... Line 199...
199
/* Reregister irq to be IPC-ready */
199
/* Reregister irq to be IPC-ready */
200
void irq_ipc_bind_arch(__native irq)
200
void irq_ipc_bind_arch(__native irq)
201
{
201
{
202
    if (irq == IRQ_CLK)
202
    if (irq == IRQ_CLK)
203
        return;
203
        return;
204
    trap_virtual_enable_irqs(1 << irq);
-
 
205
    exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
204
    exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
-
 
205
    trap_virtual_enable_irqs(1 << irq);
206
}
206
}
207
 
207
 
208
/** @}
208
/** @}
209
 */
209
 */
210
 
210