I have below libs in /usr/lib path(stripped) which needs to be replaced with unstripped types.
/usr/lib/libdbus-1.so.3.14.7
/usr/lib/liblog4c.so.3.3.0
/usr/lib/libnetsnmp.so.40.0.0
/lib/ld-2.24.so
As I need to run valgrind for one of my process (say : snmp agent process), having libs with debug symbols will help in identifying file location, function name info.
From /proc/$pid/maps file found that in addition to snmp agent process, there are some other processes also using these listed libraries. So what will happen to these processes when I replace the existing stripped libs with unstripped libraries in the same path.
or
How to run valgrind without disturbing other processes which are using the libs of interest.