diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-05 13:33:50 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-05 13:34:36 +0100 |
commit | 1cc32ebc7e1c6b14b6d79293494e5f6bd098f60d (patch) | |
tree | d0ca5998b753839531f7af94fbae4e7f94c3b4c4 /Kernel/Process.h | |
parent | 91031346e5cbac0e432d64fbdbeae42f7983cf7a (diff) | |
download | serenity-1cc32ebc7e1c6b14b6d79293494e5f6bd098f60d.zip |
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. :^)
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index 70cc33f220..36e6f0bd19 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -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 }; }; |