Share via


NdisFreeToNPagedLookasideList (Windows CE 5.0)

Send Feedback

NdisFreeToNPagedLookasideList returns an entry to the given lookaside list.

VOID  NdisFreeToNPagedLookasideList(  IN  PNPAGED_LOOKASIDE_LIST Lookaside,  IN  PVOID Entry);

Parameters

  • Lookaside
    Pointer to the head of the lookaside list to which the entry will be returned.
  • Entry
    Pointer to the entry to be freed

Return Values

None

Remarks

If the lookaside list has not reached the system-determined maximum number of entries, entry is inserted at the front of the lookaside list. If the list has reached its maximum size, Entry is released to nonpaged pool. That is, NdisFreeToNPagedLookasideList either calls the driver's Free function if the driver provided one to NdisInitializeNPagedLookasideList, or it frees the given entry itself.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
Link Library: Ndis.lib

See Also

NdisAllocateFromNPagedLookasideList | NdisInitializeNPagedLookasideList | NdisDeleteNPagedLookasideList

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.