From 0e9460ec7b48d8171f570ca5982f0f399dc8705e Mon Sep 17 00:00:00 2001 From: John Dallaway Date: Thu, 1 Feb 2018 20:45:51 +0000 Subject: Bug 529171: Disable reset and halt by default Change-Id: Ic616df36fc9af1877b22f31bfc6ef87fa3366369 Signed-off-by: John Dallaway --- .../.settings/.api_filters | 19 +++++++++++++++++++ .../cdt/debug/gdbjtag/core/IGDBJtagConstants.java | 7 ++++--- 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 jtag/org.eclipse.cdt.debug.gdbjtag.core/.settings/.api_filters (limited to 'jtag') diff --git a/jtag/org.eclipse.cdt.debug.gdbjtag.core/.settings/.api_filters b/jtag/org.eclipse.cdt.debug.gdbjtag.core/.settings/.api_filters new file mode 100644 index 00000000000..b83155a705b --- /dev/null +++ b/jtag/org.eclipse.cdt.debug.gdbjtag.core/.settings/.api_filters @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/IGDBJtagConstants.java b/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/IGDBJtagConstants.java index 3f632816737..118922d0734 100644 --- a/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/IGDBJtagConstants.java +++ b/jtag/org.eclipse.cdt.debug.gdbjtag.core/src/org/eclipse/cdt/debug/gdbjtag/core/IGDBJtagConstants.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007 - 2010 QNX Software Systems and others. + * Copyright (c) 2007 - 2018 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -8,6 +8,7 @@ * Contributors: * QNX Software Systems - Initial API and implementation * Andy Jin - Hardware debugging UI improvements, bug 229946 + * John Dallaway - Disable reset and halt by default, bug 529171 *******************************************************************************/ package org.eclipse.cdt.debug.gdbjtag.core; @@ -49,8 +50,8 @@ public interface IGDBJtagConstants { /** @since 7.0 */ public static final String ATTR_USE_PROJ_BINARY_FOR_SYMBOLS = Activator.PLUGIN_ID + ".useProjBinaryForSymbols"; //$NON-NLS-1$ /** @since 7.0 */ public static final String ATTR_USE_FILE_FOR_SYMBOLS = Activator.PLUGIN_ID + ".useFileForSymbols"; //$NON-NLS-1$ - public static final boolean DEFAULT_DO_RESET = true; - public static final boolean DEFAULT_DO_HALT = true; + public static final boolean DEFAULT_DO_RESET = false; + public static final boolean DEFAULT_DO_HALT = false; public static final int DEFAULT_DELAY = 3; public static final boolean DEFAULT_LOAD_IMAGE = true; public static final boolean DEFAULT_LOAD_SYMBOLS = true; -- cgit v1.2.3