Tool to browse Multi-thread (C++/C) code ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:52:08Zhttp://stackoverflow.com/feeds/question/340602http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/340602/tool-to-browse-multi-thread-c-c-code2Tool to browse Multi-thread (C++/C) code ?Kevin Yu2008-12-04T13:38:02Z2008-12-04T14:47:50Z
<p>We are using multi-thread in our fairly large product, but when doing review we hardly know a function or method will run under which thread. I know this looks stupid, but in a large product without good modularization, we can lost. And there are many potential synchronization problems are aware of.</p>
<p>So I'm wondering if there are tools for code browsing that could help you easily identify function/method would be run under which thread(s).</p>
http://stackoverflow.com/questions/340602/tool-to-browse-multi-thread-c-c-code/340617#3406173Answer by Gwaredd for Tool to browse Multi-thread (C++/C) code ?Gwaredd2008-12-04T13:43:21Z2008-12-04T13:43:21Z<p><a href="http://www.intel.com/cd/software/products/asmo-na/eng/219785.htm" rel="nofollow">Intel Thread Profiler</a>?</p>
http://stackoverflow.com/questions/340602/tool-to-browse-multi-thread-c-c-code/340631#3406310Answer by plan9assembler for Tool to browse Multi-thread (C++/C) code ?plan9assembler2008-12-04T13:50:39Z2008-12-04T13:50:39Z<p>SUN dbx
<a href="http://www.atnf.csiro.au/computing/software/sol2docs/manuals/workshop/debugging/MT.html#8754" rel="nofollow">http://www.atnf.csiro.au/computing/software/sol2docs/manuals/workshop/debugging/MT.html#8754</a></p>
<p>GNU gdb
<a href="http://www.ddj.com/cpp/199200938?pgno=6" rel="nofollow">http://www.ddj.com/cpp/199200938?pgno=6</a></p>
<p>HTH</p>
http://stackoverflow.com/questions/340602/tool-to-browse-multi-thread-c-c-code/340814#3408141Answer by philippe for Tool to browse Multi-thread (C++/C) code ?philippe 2008-12-04T14:47:50Z2008-12-04T14:47:50Z<p><strong><a href="http://www.scitools.com/products/understand/" rel="nofollow">Understand for C++</a></strong> is able to generate call graphs via source code analysis. A graph starting from each thread entry point will gives you which functions each thread is running.</p>
<p>It can be <strong>scripted in Perl</strong>, so you probably can generate a list of thread that can run a function. This may already exists in the scripts they provide. </p>