Add missing quota tracking variables
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 34s
Builds / ExectOS (i686, release) (push) Successful in 42s
Builds / ExectOS (i686, debug) (push) Successful in 33s
Builds / ExectOS (amd64, release) (push) Successful in 43s

This commit is contained in:
2026-07-14 23:35:46 +02:00
parent 5349bd115e
commit bc99258d52

View File

@@ -168,3 +168,9 @@ PFN_COUNT MM::Pte::TotalSystemFreePtes[MaximumPtePoolTypes];
/* Template PTE entry containing standard flags for a valid, present kernel page */
MMPTE MM::Pte::ValidPte;
/* Global limit for system-wide non-paged pool quota allocations */
SIZE_T MM::Quota::NonPagedPoolQuota;
/* Global limit for system-wide paged pool quota allocations */
SIZE_T MM::Quota::PagedPoolQuota;