Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 28d0325ce6e0a52f53d8af687e6427fee59004d3 authored by Linus Torvalds on 24 June 2009, 23:25:37 UTC
Linux 2.6.31-rc1
Tip revision: 28d0325
ftrace.h
#ifndef _ASM_PARISC_FTRACE_H
#define _ASM_PARISC_FTRACE_H

#ifndef __ASSEMBLY__
extern void mcount(void);

/*
 * Stack of return addresses for functions of a thread.
 * Used in struct thread_info
 */
struct ftrace_ret_stack {
	unsigned long ret;
	unsigned long func;
	unsigned long long calltime;
};

/*
 * Primary handler of a function return.
 * It relays on ftrace_return_to_handler.
 * Defined in entry.S
 */
extern void return_to_handler(void);
#endif /* __ASSEMBLY__ */

#endif /* _ASM_PARISC_FTRACE_H */
back to top