1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

Moving shared library features from mi to CDI.

Added new launch configuration constants to ICDTLaunchConfigurationConstants.
This commit is contained in:
Mikhail Khodjaiants 2003-08-29 21:49:44 +00:00
parent 75d00906d9
commit dab5b46aed
2 changed files with 25 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-08-29 Mikhail Khodjaiants
Moving shared library features from mi to CDI.
Added new launch configuration constants to ICDTLaunchConfigurationConstants.
2003-08-29 Mikhail Khodjaiants
Moving shared library features from mi to CDI.
Added new methods to ICDISharedLibraryManager:

View file

@ -96,6 +96,26 @@ public interface ICDTLaunchConfigurationConstants {
*/
public static final String ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING = CDT_LAUNCH_ID + ".ENABLE_VARIABLE_BOOKKEEPING"; //$NON-NLS-1$
/**
* 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$
/**
* 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.