From 8f692f9ab7e681695a7858fb134ec5cb9c30eed1 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sun, 14 Sep 2003 09:15:04 +0000 Subject: [PATCH] - Implemented the allocation type NonPagedPoolCacheAligned/NonPagedPoolCacheAlignedMustS. svn path=/trunk/; revision=6071 --- reactos/ntoskrnl/mm/pool.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/reactos/ntoskrnl/mm/pool.c b/reactos/ntoskrnl/mm/pool.c index 8792bd1fa75..89f1c2179ff 100644 --- a/reactos/ntoskrnl/mm/pool.c +++ b/reactos/ntoskrnl/mm/pool.c @@ -1,4 +1,4 @@ -/* $Id: pool.c,v 1.21 2003/07/31 11:16:10 dwelch Exp $ +/* $Id: pool.c,v 1.22 2003/09/14 09:15:04 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -30,12 +30,7 @@ EiAllocatePool(POOL_TYPE PoolType, PVOID Caller) { PVOID Block; - - if (PoolType == NonPagedPoolCacheAligned || - PoolType == NonPagedPoolCacheAlignedMustS) - { - UNIMPLEMENTED; - } + switch(PoolType) {