/* * Stack trace support for Microblaze. * * Copyright (C) 2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2009 PetaLogix * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ #include <linux/export.h> #include <linux/sched.h> #include <linux/stacktrace.h> #include <linux/thread_info.h> #include <linux/ptrace.h> #include <asm/unwind.h>
void save_stack_trace(struct stack_trace *trace) { /* Exclude our helper functions from the trace*/ trace->skip += 2; microblaze_unwind(NULL, trace); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 16 | 66.67% | 1 | 50.00% |
Steven J. Magnani | 8 | 33.33% | 1 | 50.00% |
Total | 24 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 19 | 86.36% | 1 | 50.00% |
Steven J. Magnani | 3 | 13.64% | 1 | 50.00% |
Total | 22 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 61 | 81.33% | 2 | 66.67% |
Steven J. Magnani | 14 | 18.67% | 1 | 33.33% |
Total | 75 | 100.00% | 3 | 100.00% |