|
From: <sv...@va...> - 2005-07-06 13:19:21
|
Author: njn
Date: 2005-07-06 14:19:11 +0100 (Wed, 06 Jul 2005)
New Revision: 4114
Log:
Rename VG_(get_obj)() as VG_(find_seginfo) to be more consistent
with the other function names.
Modified:
trunk/coregrind/m_debuginfo/symtab.c
trunk/include/pub_tool_debuginfo.h
Modified: trunk/coregrind/m_debuginfo/symtab.c
=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/m_debuginfo/symtab.c 2005-07-06 08:38:19 UTC (rev 411=
3)
+++ trunk/coregrind/m_debuginfo/symtab.c 2005-07-06 13:19:11 UTC (rev 411=
4)
@@ -2020,7 +2020,7 @@
=20
/* Map a code address to its SegInfo. Returns NULL if not found. Doesn=
't
require debug info. */
-SegInfo* VG_(get_obj) ( Addr a )
+SegInfo* VG_(find_seginfo) ( Addr a )
{
SegInfo* si;
=20
Modified: trunk/include/pub_tool_debuginfo.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_debuginfo.h 2005-07-06 08:38:19 UTC (rev 4113)
+++ trunk/include/pub_tool_debuginfo.h 2005-07-06 13:19:11 UTC (rev 4114)
@@ -100,7 +100,7 @@
=20
/* Returns NULL if the SegInfo isn't found. It doesn't matter if debug =
info
is present or not. */
-extern SegInfo* VG_(get_obj) ( Addr a );
+extern SegInfo* VG_(find_seginfo) ( Addr a );
=20
extern const SegInfo* VG_(next_seginfo) ( const SegInfo *si );
extern Addr VG_(seginfo_start) ( const SegInfo *si );
|