mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
patch from Mikhail
This commit is contained in:
parent
26facfb422
commit
90269402af
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-04-06 Mikhail Khodjaiants
|
||||
|
||||
Do not remove debugger process from launch.
|
||||
* src/org/eclipse/cdt/launch/internal/CoreFileLaunchDelegate.java
|
||||
* src/org/eclipse/cdt/launch/internal/LocalCLaunchConfigurationDelegate.java
|
||||
|
||||
2004-03-25 David Inglis
|
||||
|
||||
getProcessList can throw a CoreException now.
|
||||
|
|
|
@ -61,7 +61,7 @@ public class CoreFileLaunchDelegate extends AbstractCLaunchDelegate {
|
|||
}
|
||||
if ( debugger != null ) {
|
||||
debuggerProcess = DebugPlugin.newProcess(launch, debugger, "Debug Console"); //$NON-NLS-1$
|
||||
launch.removeProcess(debuggerProcess);
|
||||
// launch.removeProcess(debuggerProcess);
|
||||
}
|
||||
// set the source locator
|
||||
setSourceLocator(launch, config);
|
||||
|
|
|
@ -100,7 +100,7 @@ public class LocalCLaunchConfigurationDelegate extends AbstractCLaunchDelegate {
|
|||
debugger = dsession.getSessionProcess();
|
||||
if ( debugger != null ) {
|
||||
debuggerProcess = DebugPlugin.newProcess(launch, debugger, "Debug Console"); //$NON-NLS-1$
|
||||
launch.removeProcess(debuggerProcess);
|
||||
// launch.removeProcess(debuggerProcess);
|
||||
}
|
||||
boolean stopInMain = config.getAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false);
|
||||
CDebugModel.newDebugTarget(
|
||||
|
|
Loading…
Add table
Reference in a new issue