module.h 488 B

123456789101112131415161718192021222324
  1. #ifndef _ASM_PARISC_MODULE_H
  2. #define _ASM_PARISC_MODULE_H
  3. #include <asm-generic/module.h>
  4. /*
  5. * This file contains the parisc architecture specific module code.
  6. */
  7. struct unwind_table;
  8. struct mod_arch_specific
  9. {
  10. unsigned long got_offset, got_count, got_max;
  11. unsigned long fdesc_offset, fdesc_count, fdesc_max;
  12. struct {
  13. unsigned long stub_offset;
  14. unsigned int stub_entries;
  15. } *section;
  16. int unwind_section;
  17. struct unwind_table *unwind;
  18. };
  19. #endif /* _ASM_PARISC_MODULE_H */