1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:44:58 +00:00

Kernel/Memory: Introduce the SharedFramebufferVMObject class

This new type of VMObject will be used to coordinate switching safely
from graphical mode to text mode and vice-versa, by supplying a way to
remap all Regions that were created with this object, so mappings can be
changed according to the given state of system mode. This makes it quite
easy to give applications like WindowServer the feeling of having full
access to the framebuffer device from a DisplayConnector, but still keep
the Kernel in control to be able to safely switch to text console.
This commit is contained in:
Liav A 2022-05-13 03:22:23 +03:00 committed by Linus Groh
parent ec925cbb89
commit 3d22917548
5 changed files with 219 additions and 2 deletions

View file

@ -25,6 +25,7 @@ class DiskCache;
class DoubleBuffer;
class File;
class OpenFileDescription;
class DisplayConnector;
class FileSystem;
class FutexQueue;
class IPv4Socket;