|
From: tarun k. <tar...@ya...> - 2004-07-12 23:12:12
|
Hi, I am using valgrind 2.0.0. I keep on getting messages like ==17527== discard syms in /usr/lib/libmyodbc-2.50.39.so due to munmap() ==17527== discard syms in /usr/lib/mysql/libmysqlclient.so.10.0.0 due to munmap() ==17527== discard syms in /usr/lib/libz.so.1.1.4 due to munmap() ==17527== discard syms in /usr/lib/libmyodbc-2.50.39.so due to munmap() ==17527== discard syms in /usr/lib/mysql/libmysqlclient.so.10.0.0 due to munmap() ==17527== discard syms in /usr/lib/libz.so.1.1.4 due to munmap() What is the reason for this? and what does this message means? Also, is there any way to suppress them? I am trying to run valgrind with a -q option, still no help. Thanks!! Tarun __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail |
|
From: Nicholas N. <nj...@ca...> - 2004-07-13 07:47:48
|
On Mon, 12 Jul 2004, tarun kapoor wrote: > ==17527== discard syms in /usr/lib/libz.so.1.1.4 due to munmap() > > What is the reason for this? and what does this > message means? It just means the debugging information for a file is being unloaded, because its code has been unloaded. It's not important. > Also, is there any way to suppress them? I am trying > to run valgrind with a -q option, still no help. It shouldn't appear with -q; that's a bug in 2.0.0, it's fixed in later versions. If you want to stick with 2.0.0, just find the message in coregrind/vg_symtab2.c, comment it out, and recompile (assuming you have a source distribution). N |