Subversion Repositories HelenOS

Rev

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

Rev 1888 Rev 1937
Line 170... Line 170...
170
{
170
{
171
    ipc_irq_send_notif(n-IVT_IRQBASE);
171
    ipc_irq_send_notif(n-IVT_IRQBASE);
172
    trap_virtual_eoi();
172
    trap_virtual_eoi();
173
}
173
}
174
 
174
 
175
 
-
 
176
/* Reregister irq to be IPC-ready */
-
 
177
void irq_ipc_bind_arch(unative_t irq)
-
 
178
{
-
 
179
    if (irq == IRQ_CLK)
-
 
180
        return;
-
 
181
    exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
-
 
182
    trap_virtual_enable_irqs(1 << irq);
-
 
183
}
-
 
184
 
-
 
185
/** @}
175
/** @}
186
 */
176
 */