Subversion Repositories HelenOS-historic

Rev

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

Rev 7 Rev 10
Line 29... Line 29...
29
#ifdef __SMP__
29
#ifdef __SMP__
30
 
30
 
31
#include <smp/ipi.h>
31
#include <smp/ipi.h>
32
#include <arch/apic.h>
32
#include <arch/apic.h>
33
 
33
 
34
void ipi_broadcast(int ipi)
34
void ipi_broadcast_arch(int ipi)
35
{
35
{
36
    (void) l_apic_broadcast_custom_ipi((__u8) ipi);
36
    (void) l_apic_broadcast_custom_ipi((__u8) ipi);
37
}
37
}
38
 
38
 
39
#endif /* __SMP__ */
39
#endif /* __SMP__ */