Refactor ACPI table caching to use a static array

This commit is contained in:
2026-04-12 18:16:33 +02:00
parent d7f390b236
commit a08e07e515
4 changed files with 32 additions and 5 deletions

View File

@@ -9,6 +9,12 @@
#include <xtos.hh>
/* ACPI tables cache count */
ULONG HL::Acpi::CacheCount = 0;
/* ACPI tables cache entries */
ACPI_CACHE_LIST HL::Acpi::CacheEntries[ACPI_MAX_CACHED_TABLES];
/* ACPI tables cache list */
LIST_ENTRY HL::Acpi::CacheList;