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

Configure Feed

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

at v4.14-rc6 17 lines 340 B view raw
1#ifndef _ASM_PARISC_FTRACE_H 2#define _ASM_PARISC_FTRACE_H 3 4#ifndef __ASSEMBLY__ 5extern void mcount(void); 6 7#define MCOUNT_INSN_SIZE 4 8 9extern unsigned long sys_call_table[]; 10 11extern unsigned long return_address(unsigned int); 12 13#define ftrace_return_address(n) return_address(n) 14 15#endif /* __ASSEMBLY__ */ 16 17#endif /* _ASM_PARISC_FTRACE_H */