1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

The inferior is in the suspended state when connecting to gsbserver.

This commit is contained in:
Mikhail Khodjaiants 2006-02-09 20:30:04 +00:00
parent c69e46df85
commit 4f2be141c6
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-02-09 Mikhail Khodjaiants
The inferior is in the suspended state when connecting to gsbserver.
* GDBServerCDIDebugger2.java
2006-02-08 Mikhail Khodjaiants
Bug 114793: Add an extension point to contribute command factories.
Added standard command factory for gdb server.

View file

@ -104,6 +104,9 @@ public class GDBServerCDIDebugger2 extends GDBCDIDebugger2 {
if ( info == null ) {
throw newCoreException( MIPlugin.getResourceString( "src.GDBServerCDIDebugger.target_selection_failed" ), ex ); //$NON-NLS-1$
}
// @@@ We have to set the suspended state manually
miSession.getMIInferior().setSuspended();
miSession.getMIInferior().update();
}
}