mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Bug 575934: Initialize memory data before connecting to target
We must ensure that memory data is initialized before the restoration of persisted memory monitors is triggered. Change-Id: Id87809bb4de80785dbcfe444fd782efe41d6d086 Signed-off-by: John Dallaway <john@dallaway.org.uk>
This commit is contained in:
parent
ceb39b8735
commit
82a24fcde9
2 changed files with 4 additions and 2 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.debug.gdbjtag.core;singleton:=true
|
||||
Bundle-Version: 10.5.100.qualifier
|
||||
Bundle-Version: 10.5.200.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.debug.gdbjtag.core.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
* John Dallaway - Use 'reset and halt' command (Bug 535163)
|
||||
* John Dallaway - Eliminate deprecated API (Bug 566462)
|
||||
* John Dallaway - Set executable file (Bug 457697)
|
||||
* John Dallaway - Initialize memory data before connecting to target (Bug 575934)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.debug.gdbjtag.core;
|
||||
|
||||
|
@ -225,6 +226,8 @@ public class GDBJtagDSFFinalLaunchSequence extends FinalLaunchSequence {
|
|||
"stepRetrieveJTAGDevice", //$NON-NLS-1$
|
||||
"stepSetExecutableFile", //$NON-NLS-1$
|
||||
"stepLoadSymbols", //$NON-NLS-1$
|
||||
"stepInitializeMemory", //$NON-NLS-1$
|
||||
|
||||
"stepConnectToTarget", //$NON-NLS-1$
|
||||
"stepResetBoard", //$NON-NLS-1$
|
||||
"stepDelayStartup", //$NON-NLS-1$
|
||||
|
@ -234,7 +237,6 @@ public class GDBJtagDSFFinalLaunchSequence extends FinalLaunchSequence {
|
|||
|
||||
"stepUpdateContainer", //$NON-NLS-1$
|
||||
|
||||
"stepInitializeMemory", //$NON-NLS-1$
|
||||
"stepSetArguments", //$NON-NLS-1$
|
||||
"stepSetEnvironmentVariables", //$NON-NLS-1$
|
||||
"stepStartTrackingBreakpoints", //$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue