root/arch/i386/kernel/ksyms.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. arch_syms_export

   1 #include <linux/module.h>
   2 #include <linux/smp.h>
   3 #include <linux/user.h>
   4 #include <linux/elfcore.h>
   5 
   6 extern void dump_thread(struct pt_regs *, struct user *);
   7 extern int dump_fpu(elf_fpregset_t *);
   8 
   9 static struct symbol_table arch_symbol_table = {
  10 #include <linux/symtab_begin.h>
  11         /* platform dependent support */
  12         X(dump_thread),
  13         X(dump_fpu),
  14 #ifdef __SMP__
  15         X(apic_reg),            /* Needed internally for the I386 inlines */
  16         X(cpu_data),
  17 #endif
  18 #include <linux/symtab_end.h>
  19 };
  20 
  21 void arch_syms_export(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  22 {
  23         register_symtab(&arch_symbol_table);
  24 }

/* [previous][next][first][last][top][bottom][index][help] */