kallsyms_internal.h 520 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef LINUX_KALLSYMS_INTERNAL_H_
  3. #define LINUX_KALLSYMS_INTERNAL_H_
  4. #include <linux/types.h>
  5. extern const int kallsyms_offsets[];
  6. extern const u8 kallsyms_names[];
  7. extern const unsigned int kallsyms_num_syms;
  8. extern const unsigned long kallsyms_relative_base;
  9. extern const char kallsyms_token_table[];
  10. extern const u16 kallsyms_token_index[];
  11. extern const unsigned int kallsyms_markers[];
  12. extern const u8 kallsyms_seqs_of_names[];
  13. #endif // LINUX_KALLSYMS_INTERNAL_H_