f09c1e31bde9c3aa2d5c2765b50b7246e174c731
[linux-2.6-microblaze.git] / arch / riscv / include / asm / stacktrace.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef _ASM_RISCV_STACKTRACE_H
4 #define _ASM_RISCV_STACKTRACE_H
5
6 #include <linux/sched.h>
7 #include <asm/ptrace.h>
8
9 struct stackframe {
10         unsigned long fp;
11         unsigned long ra;
12 };
13
14 extern void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
15                                     bool (*fn)(unsigned long, void *), void *arg);
16
17 #endif /* _ASM_RISCV_STACKTRACE_H */