Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2015-09-03 19:56:10 +0000
committerGerrit Code Review @ Eclipse.org2015-09-04 01:04:48 +0000
commit12c4de0f27bcf5d0da302bc8dfab85ae9e1653c7 (patch)
tree1a818c3545fa5ba6dc44cdb5ba27c499927de0a6
parentbe95954cdda7c696b7e36f070c33afa190ccad1b (diff)
downloadorg.eclipse.cdt-12c4de0f27bcf5d0da302bc8dfab85ae9e1653c7.tar.gz
org.eclipse.cdt-12c4de0f27bcf5d0da302bc8dfab85ae9e1653c7.tar.xz
org.eclipse.cdt-12c4de0f27bcf5d0da302bc8dfab85ae9e1653c7.zip
Bug 476589 - Cannot open a trace file in a post-mortem session
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java4
1 files changed, 3 insertions, 1 deletions
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 4b8b4c5ea21..a0180579598 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
@@ -279,9 +279,11 @@ public interface ICDTLaunchConfigurationConstants {
/**
* Launch configuration attribute key. The value is a String specifying the type of post mortem launch.
+ * Note that we use the prefix "org.eclipse.cdt.dsf.gdb" for backwards-compatibility.
+ * See bug 476589.
* @since 7.7
*/
- public static final String ATTR_DEBUGGER_POST_MORTEM_TYPE = CDT_LAUNCH_ID + ".POST_MORTEM_TYPE"; //$NON-NLS-1$
+ public static final String ATTR_DEBUGGER_POST_MORTEM_TYPE = "org.eclipse.cdt.dsf.gdb" + ".POST_MORTEM_TYPE"; //$NON-NLS-1$ //$NON-NLS-2$
/**
* Launch configuration attribute value. The key is

Back to the top