Tool to browse Multi-thread (C++/C) code ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:52:08Z http://stackoverflow.com/feeds/question/340602 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340602/tool-to-browse-multi-thread-c-c-code 2 Tool to browse Multi-thread (C++/C) code ? Kevin Yu 2008-12-04T13:38:02Z 2008-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#340617 3 Answer by Gwaredd for Tool to browse Multi-thread (C++/C) code ? Gwaredd 2008-12-04T13:43:21Z 2008-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#340631 0 Answer by plan9assembler for Tool to browse Multi-thread (C++/C) code ? plan9assembler 2008-12-04T13:50:39Z 2008-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#340814 1 Answer by philippe for Tool to browse Multi-thread (C++/C) code ? philippe 2008-12-04T14:47:50Z 2008-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>