> --4274-- Reading debug info from /lib/libc-2.10.1.so ..
> --4274-- .. CRC mismatch (computed e2035481 wanted a2d8b96b)
> --4274-- Reading debug info from /usr/lib/debug/lib/libc-2.10.1.so ..

Seems like find_debug_file calls open_debug_file with various different
names to see if any of them actually exists.  This seems to produce
the confusing messages:

   if ((addr = open_debug_file(debugpath, crc, size)) == 0) {
      VG_(sprintf)(debugpath, "%s/.debug/%s", objdir, debugname);
      if ((addr = open_debug_file(debugpath, crc, size)) == 0) {
         VG_(sprintf)(debugpath, "/usr/lib/debug%s/%s", objdir, debugname);
         addr = open_debug_file(debugpath, crc, size);
      }
   }

J

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
_______________________________________________
Valgrind-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to