Rev 1888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1888 | Rev 1901 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef KERN_SMP_H_ |
35 | #ifndef KERN_SMP_H_ |
36 | #define KERN_SMP_H_ |
36 | #define KERN_SMP_H_ |
37 | 37 | ||
- | 38 | #include <synch/waitq.h> |
|
- | 39 | ||
- | 40 | extern waitq_t ap_completion_wq; |
|
- | 41 | ||
38 | #ifdef CONFIG_SMP |
42 | #ifdef CONFIG_SMP |
39 | extern void smp_init(void); |
43 | extern void smp_init(void); |
- | 44 | extern void kmp(void *arg); |
|
40 | #else |
45 | #else |
41 | #define smp_init() ; |
46 | #define smp_init() |
42 | #endif /* CONFIG_SMP */ |
47 | #endif /* CONFIG_SMP */ |
43 | 48 | ||
44 | #endif /* __SMP_H__ */ |
49 | #endif /* __SMP_H__ */ |
45 | 50 | ||
46 | /** @} |
51 | /** @} |