ExDestroyPool - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

VOID ExDestroyPool(
  HANDLE PoolHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-exdestroypool)

Description

ExDestroyPool destroys a pool instance.

Parameters

PoolHandle

[in] Handle to the pool instance to be destroyed. Must be a valid handle returned by ExCreatePool.

Return value

None.

Remarks

After this call, the pool handle is no longer valid and must not be used in subsequent operations.

All allocations associated with the pool must have been released before the pool is destroyed.

If the handle is invalid, a bug check may occur.

See also

ExCreatePool

ExAllocatePool2

ExFreePool2