diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 00:13:47 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 00:13:47 +0100 |
commit | 640360e958d6dea05ba0e294af52160bc10725cb (patch) | |
tree | 509ac7609062108169b8332064ebfae40edef1c6 /Kernel/MemoryManager.h | |
parent | 0b1b21d62286b73b8c59a2ce12e75a6de0f84f13 (diff) | |
download | serenity-640360e958d6dea05ba0e294af52160bc10725cb.zip |
Move WindowServer to userspace.
This is a monster patch that required changing a whole bunch of things.
There are performance and stability issues all over the place, but it works.
Pretty cool, I have to admit :^)
Diffstat (limited to 'Kernel/MemoryManager.h')
-rw-r--r-- | Kernel/MemoryManager.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/MemoryManager.h b/Kernel/MemoryManager.h index 0cdd526a0f..289baf0675 100644 --- a/Kernel/MemoryManager.h +++ b/Kernel/MemoryManager.h @@ -142,6 +142,7 @@ public: const VMObject& vmo() const { return *m_vmo; } VMObject& vmo() { return *m_vmo; } + bool is_shared() const { return m_shared; } void set_shared(bool shared) { m_shared = shared; } bool is_bitmap() const { return m_is_bitmap; } |