1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

Kernel: Add more AARCH64 stubs

This commit is contained in:
Gunnar Beutner 2022-10-16 21:51:08 +02:00 committed by Linus Groh
parent bf3c99ef23
commit 63a91d6971
4 changed files with 34 additions and 0 deletions

View file

@ -5,6 +5,7 @@
*/
#include <AK/Format.h>
#include <AK/Vector.h>
#include <Kernel/Arch/Processor.h>
#include <Kernel/Arch/aarch64/ASM_wrapper.h>
@ -58,4 +59,18 @@ u32 Processor::clear_critical()
TODO_AARCH64();
}
u32 Processor::smp_wake_n_idle_processors(u32 wake_count)
{
(void)wake_count;
TODO_AARCH64();
}
ErrorOr<Vector<FlatPtr, 32>> Processor::capture_stack_trace(Thread& thread, size_t max_frames)
{
(void)thread;
(void)max_frames;
TODO_AARCH64();
return Vector<FlatPtr, 32> {};
}
}