Implement MM::KernelPool::FreeProcessorStructures

这个提交包含在:
2026-03-25 14:11:24 +01:00
父节点 e734ddda65
当前提交 3c2ad358ef

查看文件

@@ -206,5 +206,10 @@ XTAPI
VOID
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);
}
}