Implement MM::KernelPool::FreeProcessorStructures

This commit is contained in:
2026-03-25 14:11:24 +01:00
parent e734ddda65
commit 3c2ad358ef

View File

@@ -206,5 +206,10 @@ XTAPI
VOID VOID
MM::KernelPool::FreeProcessorStructures(IN PVOID StructuresData) MM::KernelPool::FreeProcessorStructures(IN PVOID StructuresData)
{ {
UNIMPLEMENTED; /* Check if the provided pointer is valid */
if(StructuresData != NULLPTR)
{
/* Release the contiguous memory block back */
MM::Allocator::FreePool(StructuresData, 0);
}
} }