Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 117776 Details for
Bug 252283
[processes] Remote debugged process is not killed on debugger termination
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Final fix
zpatch.txt (text/plain), 3.61 KB, created by
Marc Khouzam
on 2008-11-13 09:40:50 EST
(
hide
)
Description:
Final fix
Filename:
MIME Type:
Creator:
Marc Khouzam
Created:
2008-11-13 09:40:50 EST
Size:
3.61 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.dd.mi >Index: src/org/eclipse/dd/mi/service/command/commands/MITargetSelect.java >=================================================================== >RCS file: /cvsroot/dsdp/org.eclipse.dd.dsf/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/MITargetSelect.java,v >retrieving revision 1.3 >diff -u -r1.3 MITargetSelect.java >--- src/org/eclipse/dd/mi/service/command/commands/MITargetSelect.java 18 Aug 2008 00:37:32 -0000 1.3 >+++ src/org/eclipse/dd/mi/service/command/commands/MITargetSelect.java 13 Nov 2008 14:39:27 -0000 >@@ -18,12 +18,28 @@ > */ > public class MITargetSelect extends MICommand<MIInfo> { > >+ @Deprecated > public MITargetSelect(IDMContext ctx, String host, String port) { >- super(ctx, "-target-select extended-remote", new String[] {host + ":" + port}); //$NON-NLS-1$ //$NON-NLS-2$ >+ this(ctx, host, port, true); > } > >+ @Deprecated > public MITargetSelect(IDMContext ctx, String serialDevice) { >- super(ctx, "-target-select extended-remote", new String[] {serialDevice}); //$NON-NLS-1$ >+ this(ctx, serialDevice, true); >+ } >+ >+ /** >+ * @since 1.1 >+ */ >+ public MITargetSelect(IDMContext ctx, String host, String port, boolean extended) { >+ super(ctx, "-target-select", new String[] { extended ? "extended-remote" : "remote", host + ":" + port}); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ >+ } >+ >+ /** >+ * @since 1.1 >+ */ >+ public MITargetSelect(IDMContext ctx, String serialDevice, boolean extended) { >+ super(ctx, "-target-select", new String[] { extended ? "extended-remote" : "remote", serialDevice}); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ > } > > } >#P org.eclipse.dd.gdb >Index: src/org/eclipse/dd/gdb/internal/provisional/launching/FinalLaunchSequence.java >=================================================================== >RCS file: /cvsroot/dsdp/org.eclipse.dd.dsf/plugins/org.eclipse.dd.gdb/src/org/eclipse/dd/gdb/internal/provisional/launching/FinalLaunchSequence.java,v >retrieving revision 1.37 >diff -u -r1.37 FinalLaunchSequence.java >--- src/org/eclipse/dd/gdb/internal/provisional/launching/FinalLaunchSequence.java 5 Nov 2008 22:35:48 -0000 1.37 >+++ src/org/eclipse/dd/gdb/internal/provisional/launching/FinalLaunchSequence.java 13 Nov 2008 14:39:29 -0000 >@@ -398,14 +398,14 @@ > > fCommandControl.queueCommand( > new MITargetSelect(fCommandControl.getContext(), >- fRemoteTcpHost, fRemoteTcpPort), >+ fRemoteTcpHost, fRemoteTcpPort, fAttach), > new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); > } else { > if (!getSerialDevice(requestMonitor)) return; > > fCommandControl.queueCommand( > new MITargetSelect(fCommandControl.getContext(), >- fSerialDevice), >+ fSerialDevice, fAttach), > new DataRequestMonitor<MIInfo>(getExecutor(), requestMonitor)); > } > } else { >@@ -489,7 +489,7 @@ > DsfServicesTracker fTracker; > > public FinalLaunchSequence(DsfExecutor executor, GdbLaunch launch, SessionType sessionType, boolean attach, IProgressMonitor pm) { >- super(executor, pm, "Configuring GDB", "Aborting configuring GDB"); >+ super(executor, pm, "Configuring GDB", "Aborting configuring GDB"); //$NON-NLS-1$//$NON-NLS-2$ > fLaunch = launch; > fSessionType = sessionType; > fAttach = attach;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
cdtdoug
:
iplog-
Actions:
View
|
Diff
Attachments on
bug 252283
:
116231
|
117232
| 117776