]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Comment changes only.
authorNicholas Nethercote <n.nethercote@gmail.com>
Sat, 10 Jul 2004 16:59:25 +0000 (16:59 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Sat, 10 Jul 2004 16:59:25 +0000 (16:59 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2468

coregrind/vg_memory.c

index c7a71de633e16da915062648f068fe9d421e3d81..21d83c1b42fdbb5872024b62d425316152dba5ce 100644 (file)
@@ -672,7 +672,7 @@ Bool VG_(is_addressable)(Addr p, Int size)
 }
 
 /*--------------------------------------------------------------------*/
-/*--- 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 @@ void VG_(client_free)(Addr addr)
    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 @@ Addr VG_(get_shadow_size)(void)
    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)
 {