Implement device map inheritance
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 42s
Builds / ExectOS (amd64, debug) (push) Successful in 43s
Builds / ExectOS (i686, debug) (push) Successful in 42s
Builds / ExectOS (i686, release) (push) Successful in 40s

This commit is contained in:
2026-08-06 22:10:47 +02:00
parent ba6b22f160
commit 317cf5ef24
3 changed files with 51 additions and 0 deletions

View File

@@ -12,6 +12,9 @@
/* Synchronizes shared read and exclusive write access to system device map structures */
KPUSH_LOCK OB::DeviceMap::DeviceMapLock;
/* Pointer to the system device map */
PDEVICE_MAP OB::DeviceMap::SystemDeviceMap = NULLPTR;
/* Indicates whether the system employs unique device maps */
BOOLEAN OB::DeviceMap::UniqueDeviceMaps;