From ce59a25fa681dc96fe814a4737f87b6b7993c228 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 8 Sep 2003 21:40:11 +0000 Subject: [PATCH] Regrouping the launch configuration constants. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 ++++ .../ICDTLaunchConfigurationConstants.java | 12 +--------- debug/org.eclipse.cdt.debug.mi.core/ChangeLog | 4 ++++ .../core/IMILaunchConfigurationConstants.java | 23 ++++++++----------- 4 files changed, 19 insertions(+), 24 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 5ab78456112..87ba2e8974c 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2003-09-09 Mikhail Khodjaiants + Regrouping the launch configuration constants. + * ICDTLaunchConfigurationConstants.java + 2003-09-09 Mikhail Khodjaiants Removed the internal handling of the 'stop-on-shared-library-events' option - will be moved to the mi. diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java index 04138b576b8..6a144b558d6 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java @@ -99,23 +99,13 @@ public interface ICDTLaunchConfigurationConstants { /** * Launch configuration attribute key. Boolean value to set the 'deferred breakpoints' property of debugger. */ - public static final String ATTR_DEBUGGER_DEFERRED_BREAKPOINTS = CDT_LAUNCH_ID + ".DEFERRED_BREAKPOINTS"; //$NON-NLS-1$ +// public static final String ATTR_DEBUGGER_DEFERRED_BREAKPOINTS = CDT_LAUNCH_ID + ".DEFERRED_BREAKPOINTS"; //$NON-NLS-1$ /** * Launch configuration attribute key. The value is a List (array of String) directories for the search path of shared libraries. */ public static final String ATTR_DEBUGGER_SOLIB_PATH = CDT_LAUNCH_ID + ".SOLIB_PATH"; //$NON-NLS-1$ - /** - * Launch configuration attribute key. Boolean value to set the 'automatically load shared library symbols' flag of the debugger. - */ - public static final String ATTR_DEBUGGER_AUTO_SOLIB = CDT_LAUNCH_ID + ".AUTO_SOLIB"; //$NON-NLS-1$ - - /** - * Launch configuration attribute key. Boolean value to set the 'stop on shared library events' flag of the debugger. - */ - public static final String ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS = CDT_LAUNCH_ID + ".STOP_ON_SOLIB_EVENTS"; //$NON-NLS-1$ - /** * Launch configuration attribute value. The key is ATTR_DEBUGGER_START_MODE. * Startup debugger running the program. diff --git a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog index b409c2db39c..1955c5ef32e 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog @@ -1,3 +1,7 @@ +2003-09-09 Mikhail Khodjaiants + Regrouping the launch configuration constants. + * IMILaunchConfigurationConstants.java + 2003-09-09 Mikhail Khodjaiants Added the 'stop-on-solib-events' option. Changed the initialization of the hared library search path. diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java index bb278a43d60..a22b1823d1b 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/IMILaunchConfigurationConstants.java @@ -14,21 +14,18 @@ public interface IMILaunchConfigurationConstants { public static final String ATTR_DEBUG_NAME = MIPlugin.getUniqueIdentifier() + ".DEBUG_NAME"; //$NON-NLS-1$ /** - * Launch configuration attribute key. The value is a List (array of String) directories for solib-search-path - * the Debuger associated with a C/C++ launch configuration. - */ - public static final String ATTR_SOLIB_PATH = MIPlugin.getUniqueIdentifier() + ".SOLIB_PATH"; //$NON-NLS-1$ - - /** - * Launch configuration attribute key. Boolean value to set the auto-solib-add - * Debuger/gdb/MI property. - */ - public static final String ATTR_AUTO_SOLIB = MIPlugin.getUniqueIdentifier() + ".AUTO_SOLIB"; //$NON-NLS-1$ - - /** - * Launch configuration attribute key. Boolean value to set the auto-solib-add + * Launch configuration attribute key. Boolean value to set the gdb command file * Debuger/gdb/MI property. */ public static final String ATTR_GDB_INIT = MIPlugin.getUniqueIdentifier() + ".GDB_INIT"; //$NON-NLS-1$ + /** + * Launch configuration attribute key. Boolean value to set the 'automatically load shared library symbols' flag of the debugger. + */ + public static final String ATTR_DEBUGGER_AUTO_SOLIB = MIPlugin.getUniqueIdentifier() + ".AUTO_SOLIB"; //$NON-NLS-1$ + + /** + * Launch configuration attribute key. Boolean value to set the 'stop on shared library events' flag of the debugger. + */ + public static final String ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS = MIPlugin.getUniqueIdentifier() + ".STOP_ON_SOLIB_EVENTS"; //$NON-NLS-1$ }