|
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 |