1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

Kernel: Remove declarations for non-existent methods

This commit is contained in:
Sam Atkins 2023-01-27 17:06:02 +00:00 committed by Linus Groh
parent 09a22ddb2a
commit 3cbc0fdbb0
19 changed files with 0 additions and 42 deletions

View file

@ -55,7 +55,6 @@ public:
bool is_system_timer(HardwareTimerBase const&) const;
static void update_time_hpet(RegisterState const&);
void increment_time_since_boot();
static bool is_hpet_periodic_mode_allowed();
@ -97,8 +96,6 @@ private:
void set_system_timer(HardwareTimerBase&);
static void system_timer_tick(RegisterState const&);
static u64 scheduling_current_time(bool);
// Variables between m_update1 and m_update2 are synchronized
// FIXME: Replace m_update1 and m_update2 with a SpinlockLocker
Atomic<u32> m_update1 { 0 };