forked from Bananymous/banan-os
Kernel: fix dump_stacktrace
This commit is contained in:
parent
62469c529f
commit
b67bbab083
|
@ -8,7 +8,7 @@ namespace Kernel
|
||||||
struct stackframe
|
struct stackframe
|
||||||
{
|
{
|
||||||
stackframe* ebp;
|
stackframe* ebp;
|
||||||
uint64_t eip;
|
uintptr_t eip;
|
||||||
};
|
};
|
||||||
|
|
||||||
stackframe* frame = (stackframe*)__builtin_frame_address(0);
|
stackframe* frame = (stackframe*)__builtin_frame_address(0);
|
||||||
|
|
Loading…
Reference in New Issue