|
From: Nicholas N. <nj...@ca...> - 2004-07-10 16:59:33
|
CVS commit by nethercote:
Comment changes only.
M +8 -1 vg_memory.c 1.56
--- valgrind/coregrind/vg_memory.c #1.55:1.56
@@ -673,5 +673,5 @@ Bool VG_(is_addressable)(Addr p, Int siz
/*--------------------------------------------------------------------*/
-/*--- manage allocation of memory on behalf of the client ---*/
+/*--- Manage allocation of memory on behalf of the client ---*/
/*--------------------------------------------------------------------*/
@@ -710,4 +710,8 @@ void VG_(client_free)(Addr addr)
}
+/*--------------------------------------------------------------------*/
+/*--- Querying memory layout ---*/
+/*--------------------------------------------------------------------*/
+
Bool VG_(is_client_addr)(Addr a)
{
@@ -755,4 +759,7 @@ Addr VG_(get_shadow_size)(void)
}
+/*--------------------------------------------------------------------*/
+/*--- manage allocation of memory on behalf of the client ---*/
+/*--------------------------------------------------------------------*/
void VG_(init_shadow_range)(Addr p, UInt sz, Bool call_init)
|