blob: b784cb639a97e2c66f965692b55b826bedfe7034 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
*
* -exec-step-instruction
* Asynchronous command. Resumes the inferior which executes one
* machine instruction. The output, once GDB has stopped, will vary
* depending on whether we have stopped in the middle of a source line or
* not. In the former case, the address at which the program stopped will
* be printed as well.
*
*/
public class MIExecStepInstruction extends MICommand
{
public MIExecStepInstruction() {
super("-exec-step-instruction");
}
}