mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-04-26 15:51:21 +00:00
10 lines
236 B
C
10 lines
236 B
C
|
|
struct stackframe {
|
||
|
|
unsigned long fp;
|
||
|
|
unsigned long sp;
|
||
|
|
unsigned long lr;
|
||
|
|
unsigned long pc;
|
||
|
|
};
|
||
|
|
|
||
|
|
int walk_stackframe(unsigned long fp, unsigned long low, unsigned long high,
|
||
|
|
int (*fn)(struct stackframe *, void *), void *data);
|