|
Lines 398-411
Link Here
|
| 398 |
|
398 |
|
| 399 |
fCommandControl.queueCommand( |
399 |
fCommandControl.queueCommand( |
| 400 |
new MITargetSelect(fCommandControl.getContext(), |
400 |
new MITargetSelect(fCommandControl.getContext(), |
| 401 |
fRemoteTcpHost, fRemoteTcpPort), |
401 |
fRemoteTcpHost, fRemoteTcpPort, fAttach), |
| 402 |
new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); |
402 |
new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); |
| 403 |
} else { |
403 |
} else { |
| 404 |
if (!getSerialDevice(requestMonitor)) return; |
404 |
if (!getSerialDevice(requestMonitor)) return; |
| 405 |
|
405 |
|
| 406 |
fCommandControl.queueCommand( |
406 |
fCommandControl.queueCommand( |
| 407 |
new MITargetSelect(fCommandControl.getContext(), |
407 |
new MITargetSelect(fCommandControl.getContext(), |
| 408 |
fSerialDevice), |
408 |
fSerialDevice, fAttach), |
| 409 |
new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); |
409 |
new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); |
| 410 |
} |
410 |
} |
| 411 |
} else { |
411 |
} else { |
|
Lines 489-495
Link Here
|
| 489 |
DsfServicesTracker fTracker; |
489 |
DsfServicesTracker fTracker; |
| 490 |
|
490 |
|
| 491 |
public FinalLaunchSequence(DsfExecutor executor, GdbLaunch launch, SessionType sessionType, boolean attach, IProgressMonitor pm) { |
491 |
public FinalLaunchSequence(DsfExecutor executor, GdbLaunch launch, SessionType sessionType, boolean attach, IProgressMonitor pm) { |
| 492 |
super(executor, pm, "Configuring GDB", "Aborting configuring GDB"); |
492 |
super(executor, pm, "Configuring GDB", "Aborting configuring GDB"); //$NON-NLS-1$//$NON-NLS-2$ |
| 493 |
fLaunch = launch; |
493 |
fLaunch = launch; |
| 494 |
fSessionType = sessionType; |
494 |
fSessionType = sessionType; |
| 495 |
fAttach = attach; |
495 |
fAttach = attach; |