mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 05:15:43 +02:00
The inferior is in the suspended state when connecting to gsbserver.
This commit is contained in:
parent
c69e46df85
commit
4f2be141c6
2 changed files with 7 additions and 0 deletions
|
@ -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
|
2006-02-08 Mikhail Khodjaiants
|
||||||
Bug 114793: Add an extension point to contribute command factories.
|
Bug 114793: Add an extension point to contribute command factories.
|
||||||
Added standard command factory for gdb server.
|
Added standard command factory for gdb server.
|
||||||
|
|
|
@ -104,6 +104,9 @@ public class GDBServerCDIDebugger2 extends GDBCDIDebugger2 {
|
||||||
if ( info == null ) {
|
if ( info == null ) {
|
||||||
throw newCoreException( MIPlugin.getResourceString( "src.GDBServerCDIDebugger.target_selection_failed" ), ex ); //$NON-NLS-1$
|
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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue