Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 267289
Collapse All | Expand All

(-)src/org/eclipse/dd/gdb/internal/provisional/launching/GdbLaunchDelegate.java (-2 / +3 lines)
Lines 161-168 Link Here
161
161
162
        // Add the CLI and "inferior" process objects to the launch.
162
        // Add the CLI and "inferior" process objects to the launch.
163
        launch.addCLIProcess("gdb"); //$NON-NLS-1$
163
        launch.addCLIProcess("gdb"); //$NON-NLS-1$
164
        launch.addInferiorProcess(exePath.lastSegment());
164
        if (!attach) {
165
165
        	launch.addInferiorProcess(exePath.lastSegment());
166
        }
166
        monitor.worked(1);
167
        monitor.worked(1);
167
        
168
        
168
        // Create and invoke the final launch sequence to setup GDB
169
        // Create and invoke the final launch sequence to setup GDB

Return to bug 267289