up vote 3 down vote favorite
share [g+] share [fb]

My primary IDE is Visual Studio 2005 and I have a large C/C++ project. I'm interested in what thread analysis tools are recommended. By that I mean, I want a tool, static or dynamic, to help find race conditions, deadlocks, and the like.

So far I've casually researched the following: 1. Intel Thread Checker: I don't believe that it ties into VS 2005? 2. Valgrind/Helgrind: free. 3. Coverity: this is a costly tool if i understand correctly.

Anyone have experience with any of these or other? I'd much appreciate any advice. Thank you.

link|improve this question

0% accept rate
What operating systems will you be debugging your software on/have access to? – Sam Post Mar 15 '10 at 2:43
windows xp. and to a lesser extent linux. – glutz78 Mar 15 '10 at 2:46
feedback

closed as not constructive by Jonathan Sampson Dec 6 '11 at 1:18

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

7 Answers

Have you looked at CHESS?:

CHESS is a tool for finding and reproducing Heisenbugs in concurrent programs. CHESS repeatedly runs a concurrent test ensuring that every run takes a different interleaving. If an interleaving results in an error, CHESS can reproduce the interleaving for improved debugging. CHESS is available for both managed and native programs.

link|improve this answer
feedback

Check Intel Parallel Studio. It supports VS2005.

link|improve this answer
feedback

I am working on a heavily threaded application which was written originally using Windows thread and synchronization libraries. I ported it to Linux/pthreads and valgrind proved immediately invaluable in detecting and fixing various memory leaks.

I'm in the process of using DRD & the rest of the valgrind suite, so far it's been amazing. It was very easy to use with virtually no learning curve. Unfortunately this only helps you if your software runs on Linux.

link|improve this answer
feedback

The new 'Concurrency Visualizer' in Visual Studio 2010 I believe is a great tool lfor threading analysis.

link|improve this answer
1  
won't help on VS2005 though.... – Mitch Wheat Mar 15 '10 at 3:35
feedback

Intel's VTune Thread Profiler is very nice.

link|improve this answer
feedback

valgrind / racegrind only work on linux (helgrind got retired). but is v good and is free

coverity is great but expensive - I dont know that is does concurrency stuff though. We run it on out v large heavily threaded codebase and it never picks up concurrency stuff. Now it could be because our code is perfect (ha, if only), more likely its because its not looking for it. But I will repeat that is a great static analyser

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.