mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 20:05:35 +02:00
Add new process id and the type id to the configuration constants.
This commit is contained in:
parent
72fb069bf4
commit
76151921f1
1 changed files with 14 additions and 0 deletions
|
@ -8,6 +8,11 @@ package org.eclipse.cdt.launch;
|
||||||
import org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin;
|
import org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin;
|
||||||
|
|
||||||
public interface ICDTLaunchConfigurationConstants {
|
public interface ICDTLaunchConfigurationConstants {
|
||||||
|
/**
|
||||||
|
* This is the launch type id.
|
||||||
|
*/
|
||||||
|
public static final String ID_LAUNCH_C_APP = "org.eclipse.cdt.launch.localCLaunch";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. The value is a name of
|
* Launch configuration attribute key. The value is a name of
|
||||||
* a C/C++ project associated with a C/C++ launch configuration.
|
* a C/C++ project associated with a C/C++ launch configuration.
|
||||||
|
@ -71,6 +76,15 @@ public interface ICDTLaunchConfigurationConstants {
|
||||||
*/
|
*/
|
||||||
public static final String ATTR_DEBUGGER_STOP_AT_MAIN = LaunchUIPlugin.getUniqueIdentifier() + ".DEBUGGER_STOP_AT_MAIN"; //$NON-NLS-1$
|
public static final String ATTR_DEBUGGER_STOP_AT_MAIN = LaunchUIPlugin.getUniqueIdentifier() + ".DEBUGGER_STOP_AT_MAIN"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Launch configuration attribute key. The value is an int specifying the process id to attach to
|
||||||
|
* if the ATTR_DEBUGGER_START_MODE is DEBUGGER_MODE_ATTACH. A non existant value or -1 for this
|
||||||
|
* entry indicates that the user should be asked to supply this value. This value is primarily
|
||||||
|
* designed to be used by programatic users of the debug interface.
|
||||||
|
*/
|
||||||
|
public static final String ATTR_ATTACH_PROCESS_ID = LaunchUIPlugin.getUniqueIdentifier() + ".ATTACH_PROCESS_ID"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. The value is the startup mode for the debugger.
|
* Launch configuration attribute key. The value is the startup mode for the debugger.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue