mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 13:18:19 +00:00
Kernel/aarch64: Make Processor::capture_stack_trace
stub non-crashing
This is the only kernel issue blocking us from running the test suite. Having userspace backtraces printed to the debug console during crashes isn't vital to the system's function, so let's just return an empty trace and print a FIXME instead of crashing.
This commit is contained in:
parent
58da4c93fb
commit
2a2787b199
Notes:
sideshowbarker
2024-07-17 06:09:44 +09:00
Author: https://github.com/BertalanD
Commit: 2a2787b199
Pull-request: https://github.com/SerenityOS/serenity/pull/19059
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ ErrorOr<Vector<FlatPtr, 32>> Processor::capture_stack_trace(Thread& thread, size
|
|||
{
|
||||
(void)thread;
|
||||
(void)max_frames;
|
||||
TODO_AARCH64();
|
||||
dbgln("FIXME: Implement Processor::capture_stack_trace() for AArch64");
|
||||
return Vector<FlatPtr, 32> {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue