Improved crash screen

This commit is contained in:
Alex
2022-11-11 04:42:28 +02:00
parent ec91346acd
commit dc5b6498f9
17 changed files with 1838 additions and 551 deletions

View File

@ -23,7 +23,7 @@ namespace CrashHandler
uint64_t rip;
};
__attribute__((no_stack_protector)) void TraceFrames(CHArchTrapFrame *Frame, int Count)
__no_stack_protector void TraceFrames(CHArchTrapFrame *Frame, int Count)
{
struct StackFrame *frames = (struct StackFrame *)Frame->rbp; // (struct StackFrame *)__builtin_frame_address(0);
debug("Stack tracing...");
@ -62,4 +62,4 @@ namespace CrashHandler
}
}
}
}
}