1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:37:34 +00:00

Kernel/aarch64: Add stub for handle_safe_access_fault

This commit is contained in:
Timon Kruiper 2023-01-08 17:41:25 +01:00 committed by Andreas Kling
parent ade27fa6b9
commit a532d28905

View file

@ -58,4 +58,10 @@ bool safe_atomic_store_relaxed(u32 volatile*, u32)
return {}; return {};
} }
bool handle_safe_access_fault(RegisterState&, FlatPtr)
{
TODO_AARCH64();
return false;
}
} }