1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

Kernel: Remove "requested wakeups" feature.

I only needed this to support the WindowServer living inside the kernel.
Now that it's been migrated to userspace, this can go. :^)
This commit is contained in:
Andreas Kling 2019-03-05 13:33:50 +01:00
parent 91031346e5
commit 1cc32ebc7e
3 changed files with 3 additions and 16 deletions

View file

@ -295,9 +295,6 @@ public:
bool is_superuser() const { return m_euid == 0; }
bool wakeup_requested() { return m_wakeup_requested; }
void request_wakeup() { m_wakeup_requested = true; }
FPUState& fpu_state() { return m_fpu_state; }
bool has_used_fpu() const { return m_has_used_fpu; }
void set_has_used_fpu(bool b) { m_has_used_fpu = b; }
@ -406,7 +403,6 @@ private:
RetainPtr<Region> m_display_framebuffer_region;
dword m_wakeup_requested { false };
bool m_has_used_fpu { false };
};