#ifndef _LIBLOCKDEP_LINUX_STACKTRACE_H_ #define _LIBLOCKDEP_LINUX_STACKTRACE_H_ #include <execinfo.h> struct stack_trace { unsigned int nr_entries, max_entries; unsigned long *entries; int skip; };
static inline void print_stack_trace(struct stack_trace *trace, int spaces) { backtrace_symbols_fd((void **)trace->entries, trace->nr_entries, 1); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sasha Levin | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sasha Levin | 40 | 100.00% | 1 | 100.00% |
Total | 40 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sasha Levin | 111 | 100.00% | 1 | 100.00% |
Total | 111 | 100.00% | 1 | 100.00% |