diff options
author | James Mintram <me@jamesrm.com> | 2022-04-02 23:47:47 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-02 19:34:20 -0700 |
commit | 783a44b18ed837ac1aa8891acc47cf06d629817f (patch) | |
tree | 83ecf37df0c4b1416d44ffa639789d8db699fb0e /Kernel/Arch/aarch64 | |
parent | 0d7eee625f9251a80b74b485a201e7d26144649f (diff) | |
download | serenity-783a44b18ed837ac1aa8891acc47cf06d629817f.zip |
Kernel: Make PhysicalRegion.cpp compile on aarch64
Diffstat (limited to 'Kernel/Arch/aarch64')
-rw-r--r-- | Kernel/Arch/aarch64/Processor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Arch/aarch64/Processor.h b/Kernel/Arch/aarch64/Processor.h index 4ea7d65862..512c13da45 100644 --- a/Kernel/Arch/aarch64/Processor.h +++ b/Kernel/Arch/aarch64/Processor.h @@ -63,6 +63,8 @@ public: return 0; } + ALWAYS_INLINE static u64 read_cpu_counter() { return 0; } + ALWAYS_INLINE static void enter_critical() { } ALWAYS_INLINE static void leave_critical() { } ALWAYS_INLINE static u32 in_critical() |