Subversion Repositories HelenOS-historic

Rev

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

Rev 430 Rev 458
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
#ifndef __IPI_H__
29
#ifndef __IPI_H__
30
#define __IPI_H__
30
#define __IPI_H__
31
 
31
 
32
#ifdef __SMP__
32
#ifdef CONFIG_SMP
33
extern void ipi_broadcast(int ipi);
33
extern void ipi_broadcast(int ipi);
34
extern void ipi_broadcast_arch(int ipi);
34
extern void ipi_broadcast_arch(int ipi);
35
#else
35
#else
36
#define ipi_broadcast(x)    ;
36
#define ipi_broadcast(x)    ;
37
#endif /* __SMP__ */
37
#endif /* CONFIG_SMP */
38
 
38
 
39
#endif
39
#endif