1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 106241: Argument stopInMain has no impact in method org.eclipse.cdt.debug.core.CDIDebugModel#newDebugTarget.

This commit is contained in:
Mikhail Khodjaiants 2005-08-25 20:12:44 +00:00
parent 485f7b6bf0
commit 541144055f
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-08-25 Mikhail Khodjaiants
Bug 106241: Argument stopInMain has no impact in method org.eclipse.cdt.debug.core.CDIDebugModel#newDebugTarget.
* CDIDebugModel.java
2005-08-25 Mikhail Khodjaiants
Bug 108028: Duplicate watchpointes.
* CBreakpointManager.java

View file

@ -87,9 +87,8 @@ public class CDIDebugModel {
IWorkspaceRunnable r = new IWorkspaceRunnable() {
public void run( IProgressMonitor m ) throws CoreException {
boolean stop = launch.getLaunchConfiguration().getAttribute( ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false );
target[0] = new CDebugTarget( launch, project, cdiTarget, name, debuggeeProcess, file, allowTerminate, allowDisconnect );
((CDebugTarget)target[0]).start( stop, resumeTarget );
((CDebugTarget)target[0]).start( stopInMain, resumeTarget );
}
};
try {