1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Regrouping the launch configuration constants.

This commit is contained in:
Mikhail Khodjaiants 2003-09-08 21:40:11 +00:00
parent 3da46e561e
commit ce59a25fa6
4 changed files with 19 additions and 24 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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.

View file

@ -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$
}