mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[NTOS:MM] Introduce MI_IS_PROCESS_WORKING_SET helper function
This commit is contained in:
parent
6b2f05f9dd
commit
8df48f9876
1 changed files with 7 additions and 0 deletions
|
@ -664,6 +664,13 @@ extern LIST_ENTRY MmWorkingSetExpansionHead;
|
|||
extern KSPIN_LOCK MmExpansionLock;
|
||||
extern PETHREAD MiExpansionLockOwner;
|
||||
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
MI_IS_PROCESS_WORKING_SET(PMMSUPPORT WorkingSet)
|
||||
{
|
||||
return (WorkingSet != &MmSystemCacheWs) && !WorkingSet->Flags.SessionSpace;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
BOOLEAN
|
||||
MiIsMemoryTypeFree(TYPE_OF_MEMORY MemoryType)
|
||||
|
|
Loading…
Reference in a new issue