blob: be3fcaa7f310f1a21a7331f685ade30ef15ab62c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 Ericsson and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Ericsson - initial API and implementation
* Marc Khouzam (Ericsson) - Instruction-level step-return does not make sense (bug 399123)
*******************************************************************************/
package org.eclipse.cdt.dsf.gdb.internal.ui.commands;
import org.eclipse.cdt.debug.core.model.IUncallHandler;
import org.eclipse.cdt.dsf.debug.service.IRunControl.StepType;
import org.eclipse.cdt.dsf.debug.ui.actions.DsfSteppingModeTarget;
import org.eclipse.cdt.dsf.service.DsfSession;
/**
* Command performing an uncall operation (part of Reverse Debugging).
* @since 2.1
*/
public class GdbUncallCommand extends GdbAbstractReverseStepCommand implements IUncallHandler {
public GdbUncallCommand(DsfSession session, DsfSteppingModeTarget steppingMode) {
super(session, steppingMode);
}
@Override
protected final StepType getStepType() {
return StepType.STEP_RETURN;
}
}