re: Question on using winedbg when program does not crash, just becomes unresponsive

2009-11-09 Thread Dan Kegel
Susan asked: [What can you do to get a backtrace of a hung app that won't hang when you run it in winedbg?] I ran into this last week and added a note to http://wiki.winehq.org/Backtraces Alternately, instad of info process / attach, you can do 'bt all' to get backtraces of all threads in

Re: Question on using winedbg when program does not crash, just becomes unresponsive

2009-11-09 Thread Peter Urbanec
Dan Kegel wrote: start winedbg without any app say 'bt all' in winedbg Voila, you now have backtraces for every process, including the hung one. It's your job to get that into a text file and remove the uninteresting ones... I've also been trying to debug a multithreaded app. There are at

Re: Question on using winedbg when program does not crash, just becomes unresponsive

2009-11-09 Thread Eric Pouech
Peter Urbanec a écrit : Dan Kegel wrote: start winedbg without any app say 'bt all' in winedbg Voila, you now have backtraces for every process, including the hung one. It's your job to get that into a text file and remove the uninteresting ones... I've also been trying to debug a