I have a program that has 4 worker threads operating on a method. If I place a breakpoint in the method each worker thread will pause on it but the step into and step over buttons (as well as play/pause/terminate) are disabled so I can't walk through the execution path.
I have tried using suspendVM rather than just suspending thread and just suspending one thread by using a conditional breakpoint referencing worker1 thread name but it makes no difference, the step in/over buttons are disabled
Anybody know how to get this to work? Its works fine when i'm running only a single main thread.