|
From: <sv...@va...> - 2010-06-07 11:23:56
|
Author: sewardj
Date: 2010-06-07 12:23:47 +0100 (Mon, 07 Jun 2010)
New Revision: 11153
Log:
Indentation/comment-only changes.
Modified:
branches/MACOSX106/coregrind/m_main.c
Modified: branches/MACOSX106/coregrind/m_main.c
===================================================================
--- branches/MACOSX106/coregrind/m_main.c 2010-06-05 11:57:57 UTC (rev 11152)
+++ branches/MACOSX106/coregrind/m_main.c 2010-06-07 11:23:47 UTC (rev 11153)
@@ -1526,9 +1526,9 @@
// Ensure we're on a plausible stack.
// p: logging
//--------------------------------------------------------------
-#if defined(VGO_darwin)
+# if defined(VGO_darwin)
// Darwin doesn't use the interim stack.
-#else
+# else
VG_(debugLog)(1, "main", "Checking current stack is plausible\n");
{ HChar* limLo = (HChar*)(&VG_(interim_stack).bytes[0]);
HChar* limHi = limLo + sizeof(VG_(interim_stack));
@@ -1556,12 +1556,12 @@
VG_(debugLog)(0, "main", " Cannot continue. Sorry.\n");
VG_(exit)(1);
}
-#endif
+# endif
//--------------------------------------------------------------
// Start up the address space manager, and determine the
// approximate location of the client's stack
- // p: logging, plausible-stack, darwin-munmap
+ // p: logging, plausible-stack
//--------------------------------------------------------------
VG_(debugLog)(1, "main", "Starting the address space manager\n");
vg_assert(VKI_PAGE_SIZE == 4096 || VKI_PAGE_SIZE == 65536);
|