sections.h 469 B

123456789101112131415
  1. #ifndef _ASM_GENERIC_SECTIONS_H_
  2. #define _ASM_GENERIC_SECTIONS_H_
  3. /* References to section boundaries */
  4. extern char _text[], _stext[], _etext[];
  5. extern char _data[], _sdata[], _edata[];
  6. extern char __bss_start[], __bss_stop[];
  7. extern char __init_begin[], __init_end[];
  8. extern char _sinittext[], _einittext[];
  9. extern char _sextratext[] __attribute__((weak));
  10. extern char _eextratext[] __attribute__((weak));
  11. extern char _end[];
  12. #endif /* _ASM_GENERIC_SECTIONS_H_ */