Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.23-rc9 19 lines 671 B view raw
1#ifndef _ASM_GENERIC_SECTIONS_H_ 2#define _ASM_GENERIC_SECTIONS_H_ 3 4/* References to section boundaries */ 5 6extern char _text[], _stext[], _etext[]; 7extern char _data[], _sdata[], _edata[]; 8extern char __bss_start[], __bss_stop[]; 9extern char __init_begin[], __init_end[]; 10extern char _sinittext[], _einittext[]; 11extern char _sextratext[] __attribute__((weak)); 12extern char _eextratext[] __attribute__((weak)); 13extern char _end[]; 14extern char __per_cpu_start[], __per_cpu_end[]; 15extern char __kprobes_text_start[], __kprobes_text_end[]; 16extern char __initdata_begin[], __initdata_end[]; 17extern char __start_rodata[], __end_rodata[]; 18 19#endif /* _ASM_GENERIC_SECTIONS_H_ */