|
From: <pa...@fr...> - 2012-04-24 07:32:57
|
----- Original Message ----- > Dear Valgrind community, > > I am currently trying to use massif on a huge programming project, > and I > want to isolate some allocations that aren't significant. > > I use the --ignore-fn option like this: > > valgrind --tool=massif --ignore-fn=SDL_CreateRGBSurface > --ignore-fn='CCircletechString::DebugUpdateL()' > --ignore-fn='CSDLUtil::CreateFontTextureBuffer(MShineFont&,unsigned > int,unsigned int)' (etc etc etc) ./a.out Hi Have you tried using the mangled C++ name? Normally I use nm to find the mangled names. with and without -C. A+ Paul |