mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
- Implemented the allocation type NonPagedPoolCacheAligned/NonPagedPoolCacheAlignedMustS.
svn path=/trunk/; revision=6071
This commit is contained in:
parent
991009f8c6
commit
8f692f9ab7
1 changed files with 2 additions and 7 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue