|
From: <sv...@va...> - 2005-11-16 00:11:17
|
Author: tom
Date: 2005-11-16 00:11:14 +0000 (Wed, 16 Nov 2005)
New Revision: 5141
Log:
Move VG_(am_get_filename) to the tool accessible aspacemgr header file.
Modified:
trunk/coregrind/pub_core_aspacemgr.h
trunk/include/pub_tool_aspacemgr.h
Modified: trunk/coregrind/pub_core_aspacemgr.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/pub_core_aspacemgr.h 2005-11-16 00:09:15 UTC (rev 514=
0)
+++ trunk/coregrind/pub_core_aspacemgr.h 2005-11-16 00:11:14 UTC (rev 514=
1)
@@ -103,7 +103,8 @@
has one. The returned name's storage cannot be assumed to be
persistent, so the caller should immediately copy the name
elsewhere. */
-extern HChar* VG_(am_get_filename)( NSegment* );
+// Is in tool-visible header file.
+// extern HChar* VG_(am_get_filename)( NSegment* );
=20
/* VG_(am_get_segment_starts) is also part of this section, but its
prototype is tool-visible, hence not in this header file. */
Modified: trunk/include/pub_tool_aspacemgr.h
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/include/pub_tool_aspacemgr.h 2005-11-16 00:09:15 UTC (rev 5140)
+++ trunk/include/pub_tool_aspacemgr.h 2005-11-16 00:11:14 UTC (rev 5141)
@@ -137,6 +137,9 @@
extern NSegment* VG_(am_find_nsegment) ( Addr a );=20
=20
// See pub_core_aspacemgr.h for description.
+extern HChar* VG_(am_get_filename)( NSegment* );
+
+// See pub_core_aspacemgr.h for description.
extern Bool VG_(am_is_valid_for_client) ( Addr start, SizeT len,=20
UInt prot );
=20
|