Skip to main content
summaryrefslogtreecommitdiffstats
blob: a8eb32f52d6787ac8994c15bc0416edc4fae4f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *(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"); //$NON-NLS-1$
	}
}

Back to the top