diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-01-16 11:46:22 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-01-16 11:46:22 -0500 |
| commit | 5a2dd72abdae75ea2960145e0549635ce4e0be96 (patch) | |
| tree | 44dba0119c75679a17215200f92ab23bdde9efc2 /include/linux/stacktrace.h | |
| parent | efdc64f0c792ea744bcc9203f35b908e66d42f41 (diff) | |
| parent | 7cb36b6ccdca03bd87e8faca7fd920643dd1aec7 (diff) | |
Merge branch 'linus' into irq/genirq
Diffstat (limited to 'include/linux/stacktrace.h')
| -rw-r--r-- | include/linux/stacktrace.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/stacktrace.h b/include/linux/stacktrace.h index b106fd8e0d5c..1a8cecc4f38c 100644 --- a/include/linux/stacktrace.h +++ b/include/linux/stacktrace.h | |||
| @@ -15,9 +15,17 @@ extern void save_stack_trace_tsk(struct task_struct *tsk, | |||
| 15 | struct stack_trace *trace); | 15 | struct stack_trace *trace); |
| 16 | 16 | ||
| 17 | extern void print_stack_trace(struct stack_trace *trace, int spaces); | 17 | extern void print_stack_trace(struct stack_trace *trace, int spaces); |
| 18 | |||
| 19 | #ifdef CONFIG_USER_STACKTRACE_SUPPORT | ||
| 20 | extern void save_stack_trace_user(struct stack_trace *trace); | ||
| 21 | #else | ||
| 22 | # define save_stack_trace_user(trace) do { } while (0) | ||
| 23 | #endif | ||
| 24 | |||
| 18 | #else | 25 | #else |
| 19 | # define save_stack_trace(trace) do { } while (0) | 26 | # define save_stack_trace(trace) do { } while (0) |
| 20 | # define save_stack_trace_tsk(tsk, trace) do { } while (0) | 27 | # define save_stack_trace_tsk(tsk, trace) do { } while (0) |
| 28 | # define save_stack_trace_user(trace) do { } while (0) | ||
| 21 | # define print_stack_trace(trace, spaces) do { } while (0) | 29 | # define print_stack_trace(trace, spaces) do { } while (0) |
| 22 | #endif | 30 | #endif |
| 23 | 31 | ||
