Tagged Questions

10
votes
9answers
6k views

64 bit tools like BoundsChecker & Purify

For many years I have used two great tools BoundsChecker & Purify, but the developers of these applications have let me down, they no longer put effort into maintaining them or developing them. We ...
3
votes
2answers
141 views

Does Valgrind have an API like Purify/Quantify that lets you disable data recording?

Something like this Purify/Quantify function: quantify_stop_recording_data() Thanks!
1
vote
1answer
182 views

Purify's Uninit Memory Read (UMR) on class/structure padding

I experience quite annoying side-effect of class/structure padding with Purify. E.g. struct something { int field1; char field2; }; /* ... */ struct something smth, smth2; smth.field1 = 1; ...
0
votes
1answer
169 views

Is there a known issue with throwing exceptions in g++ with Purify causing SIGABRT?

Actually, my real question is: is there anything wrong with the indicated line in the following code ("Causes SIGABRT"): char* myFunc(char *param) { char* leaked = new char[80]; // Intentionally ...
0
votes
1answer
140 views

Handling COR dump issue with purify

I an instrumenting a C++application using IBM purify and I get the issue COR dump and my program aborts although when run from terminal it runs fine. Can anyone tell me what is this COR dump and how ...