共用方式為


FltFreePoolAlignedWithTag 函式 (fltkernel.h)

FltFreePoolAlignedWithTag 例程會釋放先前呼叫 fltAllocatePoolAlignedWithTag 所配置的快取對齊緩衝區。

語法

VOID FLTAPI FltFreePoolAlignedWithTag(
  [in] PFLT_INSTANCE Instance,
  [in] PVOID         Buffer,
  [in] ULONG         Tag
);

參數

[in] Instance

附加至磁碟區的呼叫端擁有迷你篩選驅動程序實例的不透明實例指標。 必須是與呼叫中用來 FltAllocatePoolAlignedWithTag相同的實例指標。

[in] Buffer

要釋放之集區內存區塊的位址。

[in] Tag

用來標記集區區塊的標記。 必須與呼叫 FltAllocatePoolAlignedWithTag中使用的標記相同。

傳回值

沒有

言論

FltFreePoolAlignedWithTag釋放緩衝區 參數所指向的記憶體不可存取。

如果配置記憶體時指定了 NonPagedXxxPoolType 值,FltFreePoolAlignedWithTag 的呼叫端可以在 IRQL DISPATCH_LEVEL執行。 否則,呼叫端必須在 IRQL <= APC_LEVEL執行。

要求

要求 價值
目標平臺 普遍
標頭 fltkernel.h (包括 Fltkernel.h)
連結庫 FltMgr.lib
IRQL 請參閱一節。

另請參閱

FltAllocatePoolAlignedWithTag