Rename VG_(get_obj)() as VG_(find_seginfo) to be more consistent
with the other function names.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4114 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/m_debuginfo/symtab.c b/coregrind/m_debuginfo/symtab.c
index a75aef5..a807ee8 100644
--- a/coregrind/m_debuginfo/symtab.c
+++ b/coregrind/m_debuginfo/symtab.c
@@ -2020,7 +2020,7 @@
 
 /* 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;
 
diff --git a/include/pub_tool_debuginfo.h b/include/pub_tool_debuginfo.h
index acbd511..b1fb102 100644
--- a/include/pub_tool_debuginfo.h
+++ b/include/pub_tool_debuginfo.h
@@ -100,7 +100,7 @@
 
 /* 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 );
 
 extern const SegInfo* VG_(next_seginfo)      ( const SegInfo *si );
 extern       Addr     VG_(seginfo_start)     ( const SegInfo *si );