Kernel: Add _GL to ACPI root namespace

This commit is contained in:
2024-08-15 02:28:22 +03:00
parent 3f5ee6f414
commit e0a447bfaf
2 changed files with 7 additions and 1 deletions

View File

@@ -14,10 +14,12 @@ namespace Kernel::ACPI::AML
{
Kernel::Mutex mutex;
uint8_t sync_level;
bool global;
Mutex(NameSeg name, uint8_t sync_level)
Mutex(NameSeg name, uint8_t sync_level, bool global = false)
: NamedObject(Node::Type::Mutex, name)
, sync_level(sync_level)
, global(global)
{}
BAN::RefPtr<AML::Node> convert(uint8_t) override { return {}; }