URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [linux_sd_driver/] [include/] [linux/] [stacktrace.h] - Rev 81
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef __LINUX_STACKTRACE_H #define __LINUX_STACKTRACE_H #ifdef CONFIG_STACKTRACE struct stack_trace { unsigned int nr_entries, max_entries; unsigned long *entries; int skip; /* input argument: How many entries to skip */ }; extern void save_stack_trace(struct stack_trace *trace); extern void print_stack_trace(struct stack_trace *trace, int spaces); #else # define save_stack_trace(trace) do { } while (0) # define print_stack_trace(trace, spaces) do { } while (0) #endif #endif
Go to most recent revision | Compare with Previous | Blame | View Log