2006-07-03 00:24:38 -07:00
|
|
|
#ifndef __LINUX_STACKTRACE_H
|
|
|
|
#define __LINUX_STACKTRACE_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_STACKTRACE
|
|
|
|
struct stack_trace {
|
|
|
|
unsigned int nr_entries, max_entries;
|
|
|
|
unsigned long *entries;
|
2006-09-26 10:52:34 +02:00
|
|
|
int skip; /* input argument: How many entries to skip */
|
2006-07-03 00:24:38 -07:00
|
|
|
};
|
|
|
|
|
2007-05-08 00:23:29 -07:00
|
|
|
extern void save_stack_trace(struct stack_trace *trace);
|
2006-07-03 00:24:38 -07:00
|
|
|
|
|
|
|
extern void print_stack_trace(struct stack_trace *trace, int spaces);
|
|
|
|
#else
|
2007-05-08 00:23:29 -07:00
|
|
|
# define save_stack_trace(trace) do { } while (0)
|
2007-07-19 01:49:02 -07:00
|
|
|
# define print_stack_trace(trace, spaces) do { } while (0)
|
2006-07-03 00:24:38 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|