https://github.com/torvalds/linux
Raw File
Tip revision: 6847e154e3cd74fca6084124c097980a7634285a authored by Linus Torvalds on 14 July 2009, 01:18:52 UTC
Linux 2.6.31-rc3
Tip revision: 6847e15
ftrace.h
#ifndef _ASM_ARM_FTRACE
#define _ASM_ARM_FTRACE

#ifdef CONFIG_FUNCTION_TRACER
#define MCOUNT_ADDR		((long)(mcount))
#define MCOUNT_INSN_SIZE	4 /* sizeof mcount call */

#ifndef __ASSEMBLY__
extern void mcount(void);
#endif

#endif

#endif /* _ASM_ARM_FTRACE */
back to top