1 #include <linux/module.h>
2 #include <linux/smp.h>
3
4
5 static struct symbol_table arch_symbol_table = {
6 #include <linux/symtab_begin.h>
7 /* platform dependent support */
8 #ifdef __SMP__
9 X(apic_reg), /* Needed internally for the I386 inlines */
10 X(cpu_data),
11 #endif
12 #include <linux/symtab_end.h>
13 };
14
15 void arch_syms_export(void)
/* ![[previous]](../icons/n_left.png)
![[next]](../icons/n_right.png)
![[first]](../icons/n_first.png)
![[last]](../icons/n_last.png)
![[top]](../icons/top.png)
![[bottom]](../icons/bottom.png)
![[index]](../icons/index.png)
*/
16 {
17 register_symtab(&arch_symbol_table);
18 }