ExFlushLookasideListEx function (wdm.h)

The ExFlushLookasideListEx routine flushes all entries from the specified lookaside list and frees the allocated storage for each entry.

Syntax

void ExFlushLookasideListEx(
  [in, out] PLOOKASIDE_LIST_EX Lookaside
);

Parameters

[in, out] Lookaside

A pointer to a LOOKASIDE_LIST_EX structure that describes a lookaside list. This structure was previously initialized by the ExInitializeLookasideListEx routine.

Return value

None

Remarks

On return from this routine, the lookaside list is empty and the allocated storage for all its entries has been freed.

For more information about lookaside lists, see Using Lookaside Lists.

Requirements

Requirement Value
Minimum supported client Available in Windows Vista and later versions of Windows.
Target Platform Universal
Header wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe
IRQL <= DISPATCH_LEVEL

See also

ExInitializeLookasideListEx

LOOKASIDE_LIST_EX