Author: cfinck
Date: Mon May 12 15:48:48 2008
New Revision: 33486
URL: http://svn.reactos.org/svn/reactos?rev=33486&view=rev
Log:
Fix the Release build by marking MmPageArraySize as unreferenced.
Changing the ASSERT, so that it doesn't spit out an "unused variable" warning on Release builds doesn't work, because then it expects this variable to exist. (which is not the case for some struct elements passed to ASSERT in some other parts of the kernel)
Modified:
trunk/reactos/ntoskrnl/include/internal/mm.h
Modified: trunk/reactos/ntoskrnl/include/internal/mm.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/mm.h [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/include/internal/mm.h [iso-8859-1] Mon May 12 15:48:48 2008
@@ -986,6 +986,9 @@
extern PPHYSICAL_PAGE MmPageArray;
extern ULONG MmPageArraySize;
+ /* Mark MmPageArraySize as unreferenced, otherwise it will appear as an unused variable on a Release build */
+ UNREFERENCED_PARAMETER(MmPageArraySize);
+
/* Make sure the PFN number is valid */
ASSERT(Pfn <= MmPageArraySize);
Author: pschweitzer
Date: Mon May 12 12:42:46 2008
New Revision: 33480
URL: http://svn.reactos.org/svn/reactos?rev=33480&view=rev
Log:
This branch is not needed any more. It served us well.
Removed:
branches/ext2/