mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
removed the ros-specific (and unused) functions ExRosDumpPagedPoolByTag, ExRosQueryPagedPoolTag and ExRosQueryPoolTag
svn path=/trunk/; revision=16677
This commit is contained in:
parent
0da3627c3b
commit
409e9165aa
4 changed files with 2 additions and 36 deletions
|
@ -20,11 +20,6 @@ extern ULONG MmTotalPagedPoolQuota;
|
|||
extern ULONG MmTotalNonPagedPoolQuota;
|
||||
extern MM_STATS MmStats;
|
||||
|
||||
/* GLOBALS *****************************************************************/
|
||||
|
||||
ULONG STDCALL
|
||||
ExRosQueryPagedPoolTag ( PVOID Block );
|
||||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
||||
STATIC PVOID STDCALL
|
||||
|
@ -337,20 +332,4 @@ MiRaisePoolQuota(
|
|||
}
|
||||
}
|
||||
|
||||
ULONG STDCALL
|
||||
ExRosQueryPoolTag ( PVOID Block )
|
||||
{
|
||||
ASSERT_IRQL(DISPATCH_LEVEL);
|
||||
|
||||
if (Block >= MmPagedPoolBase && (char*)Block < ((char*)MmPagedPoolBase + MmPagedPoolSize))
|
||||
{
|
||||
return ExRosQueryPagedPoolTag(Block);
|
||||
}
|
||||
else
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -98,19 +98,6 @@ ExFreePagedPool(IN PVOID Block)
|
|||
RPoolFree ( MmPagedPool, Block );
|
||||
}
|
||||
|
||||
VOID STDCALL
|
||||
ExRosDumpPagedPoolByTag ( ULONG Tag )
|
||||
{
|
||||
// TODO FIXME - should we ASSERT_IRQL?
|
||||
RPoolDumpByTag ( MmPagedPool, Tag );
|
||||
}
|
||||
|
||||
ULONG STDCALL
|
||||
ExRosQueryPagedPoolTag ( PVOID Addr )
|
||||
{
|
||||
// TODO FIXME - should we ASSERT_IRQL?
|
||||
return RPoolQueryTag ( Addr );
|
||||
}
|
||||
|
||||
#ifdef PPOOL_UMODE_TEST
|
||||
|
||||
|
|
|
@ -933,6 +933,7 @@ RPoolFree ( PR_POOL pool, void* Addr )
|
|||
R_RELEASE_MUTEX(pool);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
RPoolDumpByTag ( PR_POOL pool, rulong Tag )
|
||||
{
|
||||
|
@ -963,6 +964,7 @@ RPoolDumpByTag ( PR_POOL pool, rulong Tag )
|
|||
|
||||
R_DEBUG ( "Entries found for tag '%s': %i\n", tag, count );
|
||||
}
|
||||
#endif
|
||||
|
||||
rulong
|
||||
RPoolQueryTag ( void* Addr )
|
||||
|
|
|
@ -138,8 +138,6 @@ ExReleaseResourceForThreadLite@8
|
|||
@ExReleaseResourceLite@4
|
||||
@ExReleaseRundownProtection@4
|
||||
@ExReleaseRundownProtectionEx@8
|
||||
ExRosDumpPagedPoolByTag@4
|
||||
ExRosQueryPoolTag@4
|
||||
@ExRundownCompleted@4
|
||||
ExSemaphoreObjectType DATA
|
||||
ExSetResourceOwnerPointer@8
|
||||
|
|
Loading…
Reference in a new issue