Rename functions to make the type involved clearer.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4021 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/pub_tool_debuginfo.h b/include/pub_tool_debuginfo.h
index 106ad72..bafb59c 100644
--- a/include/pub_tool_debuginfo.h
+++ b/include/pub_tool_debuginfo.h
@@ -102,11 +102,11 @@
    is present or not. */
 extern SegInfo* VG_(get_obj)  ( Addr a );
 
-extern const SegInfo* VG_(next_seginfo)  ( const SegInfo *si );
-extern       Addr     VG_(seg_start)     ( const SegInfo *si );
-extern       SizeT    VG_(seg_size)      ( const SegInfo *si );
-extern const UChar*   VG_(seg_filename)  ( const SegInfo *si );
-extern       ULong    VG_(seg_sym_offset)( const SegInfo *si );
+extern const SegInfo* VG_(next_seginfo)      ( const SegInfo *si );
+extern       Addr     VG_(seginfo_start)     ( const SegInfo *si );
+extern       SizeT    VG_(seginfo_size)      ( const SegInfo *si );
+extern const UChar*   VG_(seginfo_filename)  ( const SegInfo *si );
+extern       ULong    VG_(seginfo_sym_offset)( const SegInfo *si );
 
 typedef
    enum {
@@ -119,7 +119,7 @@
    }
    VgSectKind;
 
-extern VgSectKind VG_(seg_sect_kind)(Addr);
+extern VgSectKind VG_(seginfo_sect_kind)(Addr);
 
 #endif   // __PUB_TOOL_DEBUGINFO_H