|
From: Philippe W. <phi...@sk...> - 2015-05-01 22:07:54
|
On Fri, 2015-05-01 at 23:45 +0200, Jon wrote: > Since none of these functions were called by the program above, I wonder > if this how the output is supposed to look. Were are these function > calls coming from then? Or could there be something wrong with the way I > installed Valgrind? This is all normal. Unless you link statically, the program will be linked with the dynamic loader and other .so, which will be called at startup Use ldd ./test to see these. Note btw that having a dynamically linked executable is critical to have Valgrind tools such as memcheck or helgrind working properly. Philippe |