diff options
author | Liav A <liavalb@gmail.com> | 2021-09-11 09:19:20 +0300 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2021-09-17 01:02:48 +0300 |
commit | aee4786d8e80a2a4b2b2422afc4f8f342433c599 (patch) | |
tree | 1cdedafb91c7f405ff75a53f3c33cacf86d7167b /Kernel/CMakeLists.txt | |
parent | 9aa6dd6b786d42f6c131d03cba58e9999e0644d0 (diff) | |
download | serenity-aee4786d8e80a2a4b2b2422afc4f8f342433c599.zip |
Kernel: Introduce the DeviceManagement singleton
This singleton simplifies many aspects that we struggled with before:
1. There's no need to make derived classes of Device expose the
constructor as public anymore. The singleton is a friend of them, so he
can call the constructor. This solves the issue with try_create_device
helper neatly, hopefully for good.
2. Getting a reference of the NullDevice is now being done from this
singleton, which means that NullDevice no longer needs to use its own
singleton, and we can apply the try_create_device helper on it too :)
3. We can now defer registration completely after the Device constructor
which means the Device constructor is merely assigning the major and
minor numbers of the Device, and the try_create_device helper ensures it
calls the after_inserting method immediately after construction. This
creates a great opportunity to make registration more OOM-safe.
Diffstat (limited to 'Kernel/CMakeLists.txt')
-rw-r--r-- | Kernel/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index e819ada537..d2e37b94bb 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -48,6 +48,7 @@ set(KERNEL_SOURCES Devices/BlockDevice.cpp Devices/CharacterDevice.cpp Devices/Device.cpp + Devices/DeviceManagement.cpp Devices/FullDevice.cpp Devices/KCOVDevice.cpp Devices/KCOVInstance.cpp |