GDBMI_exec_next.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 26 May 2017 08:05:28 +0100
changeset 78 c24e7d8bc881
parent 12 568a2971c977
child 91 472a4841a8b6
permissions -rw-r--r--
BUpdated build files.

"{ Package: 'jv:libgdbs' }"

"{ NameSpace: Smalltalk }"

GDBMICommand subclass:#GDBMI_exec_next
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Commands-MI'
!

!GDBMI_exec_next class methodsFor:'documentation'!

documentation
"
The `-exec-next' Command
------------------------

Synopsis
........

      -exec-next [--reverse]

   Resumes execution of the inferior program, stopping when the
beginning of the next source line is reached.

   If the `--reverse' option is specified, resumes reverse execution of
the inferior program, stopping at the beginning of the previous source
line.  If you issue this command on the first line of a function, it
will take you back to the caller of that function, to the source line
where the function was called.

{No value for `GDBN'} Command
.............................

The corresponding {No value for `GDBN'} command is `next'.

Example
.......

     -exec-next
     ^running
     (gdb)
     *stopped,reason='end-stepping-range',line='8',file='hello.c'
     (gdb)


"
! !

!GDBMI_exec_next methodsFor:'accessing'!

operation
	^ 'exec-next'
! !