From: Dirk M. <dm...@gm...> - 2003-06-19 20:38:39
|
On Don, 19 Jun 2003, Stijn van Dongen wrote: > > Is it obvious that I should not use -pg, or should valgrind do > just fine with -pg and must I further investigate this stuff (and > post a minimal example) ? - or does -pg not mix with some of the > other gcc options I am using? No, you're just hitting bugs in your libc. As you can see nothing references any function that is in your code, so there is no reason to worry. valgrind does not difference between application and library code, it simply reports all errors it finds. the mcleanup() and similiar handlers are code paths that are only used during profiling. -- Dirk |