1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Suspend the inferior before selecting the thread.

This commit is contained in:
Alain Magloire 2003-05-06 16:04:13 +00:00
parent 35d67a4b7e
commit 9b6c9a6f45

View file

@ -312,8 +312,8 @@ public class Thread extends CObject implements ICDIThread {
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIThread#suspend()
*/
public void suspend() throws CDIException {
getTarget().setCurrentThread(this);
getTarget().suspend();
getTarget().setCurrentThread(this);
}
/**