summaryrefslogtreecommitdiff
path: root/Kernel/MemoryManager.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-17 00:13:47 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-17 00:13:47 +0100
commit640360e958d6dea05ba0e294af52160bc10725cb (patch)
tree509ac7609062108169b8332064ebfae40edef1c6 /Kernel/MemoryManager.h
parent0b1b21d62286b73b8c59a2ce12e75a6de0f84f13 (diff)
downloadserenity-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.h1
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; }