Author: tfaber Date: Fri Oct 16 13:20:00 2015 New Revision: 69552
URL: http://svn.reactos.org/svn/reactos?rev=69552&view=rev Log: [NTOS:CM] - Remove duplicate macro definitions
Modified: trunk/reactos/ntoskrnl/include/internal/cm_x.h
Modified: trunk/reactos/ntoskrnl/include/internal/cm_x.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/c... ============================================================================== --- trunk/reactos/ntoskrnl/include/internal/cm_x.h [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/include/internal/cm_x.h [iso-8859-1] Fri Oct 16 13:20:00 2015 @@ -311,25 +311,3 @@ (CmpTestHiveFlusherLockShared((PCMHIVE)h) == TRUE) || \ (CmpTestHiveFlusherLockExclusive((PCMHIVE)h) == TRUE) || \ (CmpTestRegistryLockExclusive() == TRUE)); - -// -// Asserts that either the registry or the KCB is locked -// -#define CMP_ASSERT_HASH_ENTRY_LOCK(k) \ -{ \ - ASSERT(((GET_HASH_ENTRY(CmpCacheTable, k).Owner == \ - KeGetCurrentThread())) || \ - (CmpTestRegistryLockExclusive() == TRUE)); \ -} - -// -// Gets the page attached to the KCB -// -#define CmpGetAllocPageFromKcb(k) \ - (PCM_ALLOC_PAGE)(((ULONG_PTR)(k)) & ~(PAGE_SIZE - 1)) - -// -// Gets the page attached to the delayed allocation -// -#define CmpGetAllocPageFromDelayAlloc(a) \ - (PCM_ALLOC_PAGE)(((ULONG_PTR)(a)) & ~(PAGE_SIZE - 1))