|
From: Julian S. <js...@ac...> - 2015-03-16 15:11:16
|
> I know I'm doing something wrong because helgrind works, but I don't > realize what. Maybe someone of you knows what's going on(I have the > preload.so). Possibly the problem is that you are using C++ and so the names in the generated machine code are different from those in your source. This is different from the situation in C, where there is a 1:1 mapping. You can find the names in the machine code using 'nm' on the .o or executable file. Passing the output of nm through c++filt is also useful. Or just write your test case in C instead. J |