From 5f7c5942a51de37d932350664d20034289c533c5 Mon Sep 17 00:00:00 2001 From: short <> Date: Sat, 23 Nov 2002 16:19:46 +0000 Subject: [PATCH] +ExDeleteNPagedLookasideList() +ExDeletePagedLookasideList() +ExInitializeNPagedLookasideList() +ExInitializePagedLookasideList() --- ntoskrnl/ex/lookas.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ntoskrnl/ex/lookas.c b/ntoskrnl/ex/lookas.c index ef82f83..7e45bf6 100644 --- a/ntoskrnl/ex/lookas.c +++ b/ntoskrnl/ex/lookas.c @@ -102,6 +102,8 @@ ExpInitLookasideLists() ExpMinMaxRoutine = ExpDefaultMinMax; } +#ifndef LIBCAPTIVE + PVOID STDCALL ExAllocateFromPagedLookasideList ( @@ -133,6 +135,8 @@ ExAllocateFromPagedLookasideList ( return Entry; } +#endif /* LIBCAPTIVE */ + VOID STDCALL ExDeleteNPagedLookasideList ( @@ -186,6 +190,8 @@ ExDeletePagedLookasideList ( KeReleaseSpinLock(&ExpPagedLookasideListLock, OldIrql); } +#ifndef LIBCAPTIVE + VOID STDCALL ExFreeToPagedLookasideList ( @@ -208,6 +214,8 @@ ExFreeToPagedLookasideList ( } } +#endif /* LIBCAPTIVE */ + VOID STDCALL ExInitializeNPagedLookasideList ( -- 1.8.3.1