42_KFS/src/debug/print_stack.c
2024-09-17 13:19:56 +02:00

14 lines
231 B
C

#include "debug.h"
#include "kprintf.h"
void print_stack(void)
{
struct stackframe *stack =
(struct stackframe *)__builtin_frame_address(0);
while (stack) {
kprintf(0, "fn: %d\n", stack->eip);
stack = stack->ebp;
}
}