Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 14ccee78fc82f5512908f4424f541549a5705b89 authored by Linus Torvalds on 20 August 2017, 21:13:52 UTC
Linux 4.13-rc6
Tip revision: 14ccee7
ftrace.h
#ifndef _ASM_PARISC_FTRACE_H
#define _ASM_PARISC_FTRACE_H

#ifndef __ASSEMBLY__
extern void mcount(void);

#define MCOUNT_INSN_SIZE 4

extern unsigned long sys_call_table[];

extern unsigned long return_address(unsigned int);

#define ftrace_return_address(n) return_address(n)

#endif /* __ASSEMBLY__ */

#endif /* _ASM_PARISC_FTRACE_H */
back to top