In a method I am debugging, I am spawning a new thread. I need to debug the execution of this new thread rather than the parent thread. How can I do this in eclipse?
Put a breakpoint on "run" method of the new thread. That would halt execution once the thread starts.