mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +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 ULONG MmTotalNonPagedPoolQuota;
|
||||||
extern MM_STATS MmStats;
|
extern MM_STATS MmStats;
|
||||||
|
|
||||||
/* GLOBALS *****************************************************************/
|
|
||||||
|
|
||||||
ULONG STDCALL
|
|
||||||
ExRosQueryPagedPoolTag ( PVOID Block );
|
|
||||||
|
|
||||||
/* FUNCTIONS ***************************************************************/
|
/* FUNCTIONS ***************************************************************/
|
||||||
|
|
||||||
STATIC PVOID STDCALL
|
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 */
|
/* EOF */
|
||||||
|
|
|
@ -98,19 +98,6 @@ ExFreePagedPool(IN PVOID Block)
|
||||||
RPoolFree ( MmPagedPool, 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
|
#ifdef PPOOL_UMODE_TEST
|
||||||
|
|
||||||
|
|
|
@ -933,6 +933,7 @@ RPoolFree ( PR_POOL pool, void* Addr )
|
||||||
R_RELEASE_MUTEX(pool);
|
R_RELEASE_MUTEX(pool);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
static void
|
static void
|
||||||
RPoolDumpByTag ( PR_POOL pool, rulong Tag )
|
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 );
|
R_DEBUG ( "Entries found for tag '%s': %i\n", tag, count );
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
rulong
|
rulong
|
||||||
RPoolQueryTag ( void* Addr )
|
RPoolQueryTag ( void* Addr )
|
||||||
|
|
|
@ -138,8 +138,6 @@ ExReleaseResourceForThreadLite@8
|
||||||
@ExReleaseResourceLite@4
|
@ExReleaseResourceLite@4
|
||||||
@ExReleaseRundownProtection@4
|
@ExReleaseRundownProtection@4
|
||||||
@ExReleaseRundownProtectionEx@8
|
@ExReleaseRundownProtectionEx@8
|
||||||
ExRosDumpPagedPoolByTag@4
|
|
||||||
ExRosQueryPoolTag@4
|
|
||||||
@ExRundownCompleted@4
|
@ExRundownCompleted@4
|
||||||
ExSemaphoreObjectType DATA
|
ExSemaphoreObjectType DATA
|
||||||
ExSetResourceOwnerPointer@8
|
ExSetResourceOwnerPointer@8
|
||||||
|
|
Loading…
Reference in a new issue