mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 23:55:26 +02:00
Bug 476589 - Cannot open a trace file in a post-mortem session
Change-Id: I0dbdb864d929f67286a2dbce32748df90b449754
This commit is contained in:
parent
832f2bb899
commit
daf1be845c
2 changed files with 15 additions and 1 deletions
12
debug/org.eclipse.cdt.debug.core/.settings/.api_filters
Normal file
12
debug/org.eclipse.cdt.debug.core/.settings/.api_filters
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<component id="org.eclipse.cdt.debug.core" version="2">
|
||||
<resource path="src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java" type="org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants">
|
||||
<filter comment="We should have used the original id for backwards-compatibility" id="388194388">
|
||||
<message_arguments>
|
||||
<message_argument value="org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants"/>
|
||||
<message_argument value="ATTR_DEBUGGER_POST_MORTEM_TYPE"/>
|
||||
<message_argument value="org.eclipse.cdt.launch.POST_MORTEM_TYPE"/>
|
||||
</message_arguments>
|
||||
</filter>
|
||||
</resource>
|
||||
</component>
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue