oleavr-rgl-a500-mini-linux-.../arch/arm/include/asm/stacktrace.h

16 lines
353 B
C
Raw Normal View History

2022-05-07 01:01:45 +02:00
#ifndef __ASM_STACKTRACE_H
#define __ASM_STACKTRACE_H
struct stackframe {
unsigned long fp;
unsigned long sp;
unsigned long lr;
unsigned long pc;
};
extern int unwind_frame(struct stackframe *frame);
extern void walk_stackframe(struct stackframe *frame,
int (*fn)(struct stackframe *, void *), void *data);
#endif /* __ASM_STACKTRACE_H */