summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorDaniel Bertalan <dani@danielbertalan.dev>2023-05-26 08:16:23 +0200
committerAndrew Kaster <andrewdkaster@gmail.com>2023-05-28 05:05:09 -0600
commit2a2787b1991d38d475f29f0918e78180ddaefd3b (patch)
treeadcd8c01604765339271ca42cc4ac4c085155e59 /Kernel
parent58da4c93fbc2dcd9bde273d0e0bf3f4a07d3a5c8 (diff)
downloadserenity-2a2787b1991d38d475f29f0918e78180ddaefd3b.zip
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.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Arch/aarch64/Processor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Arch/aarch64/Processor.cpp b/Kernel/Arch/aarch64/Processor.cpp
index 7545a42d2d..86ff0740a2 100644
--- a/Kernel/Arch/aarch64/Processor.cpp
+++ b/Kernel/Arch/aarch64/Processor.cpp
@@ -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> {};
}