Comment changes only.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2468 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_memory.c b/coregrind/vg_memory.c
index c7a71de..21d83c1 100644
--- a/coregrind/vg_memory.c
+++ b/coregrind/vg_memory.c
@@ -672,7 +672,7 @@
 }
 
 /*--------------------------------------------------------------------*/
-/*--- manage allocation of memory on behalf of the client          ---*/
+/*--- Manage allocation of memory on behalf of the client          ---*/
 /*--------------------------------------------------------------------*/
 
 // Returns 0 on failure.
@@ -709,6 +709,10 @@
    VG_(munmap)((void *)s->addr, s->len);
 }
 
+/*--------------------------------------------------------------------*/
+/*--- Querying memory layout                                       ---*/
+/*--------------------------------------------------------------------*/
+
 Bool VG_(is_client_addr)(Addr a)
 {
    return a >= VG_(client_base) && a < VG_(client_end);
@@ -754,6 +758,9 @@
    return VG_(shadow_end)-VG_(shadow_base);
 }
 
+/*--------------------------------------------------------------------*/
+/*--- manage allocation of memory on behalf of the client          ---*/
+/*--------------------------------------------------------------------*/
 
 void VG_(init_shadow_range)(Addr p, UInt sz, Bool call_init)
 {