forked from xt-sys/exectos
Implement MM::KernelPool::FreeProcessorStructures
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user