GDBMI_exec_continue.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 19 Jun 2014 22:16:26 +0100
changeset 18 6bf3d5c400d1
parent 12 568a2971c977
child 78 c24e7d8bc881
permissions -rw-r--r--
Make GDBEvent and GDBCommandResult also described by value descriptor... ...so their return values are typed and this parsed as objects.

"{ Package: 'jv:libgdbs' }"

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

!GDBMI_exec_continue class methodsFor:'documentation'!

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

Synopsis
........

      -exec-continue [--reverse] [--all|--thread-group N]

   Resumes the execution of the inferior program, which will continue
to execute until it reaches a debugger stop event.  If the `--reverse'
option is specified, execution resumes in reverse until it reaches a
stop event.  Stop events may include
   * breakpoints or watchpoints

   * signals or exceptions

   * the end of the process (or its beginning under `--reverse')

   * the end or beginning of a replay log if one is being used.
   In all-stop mode (*note All-Stop Mode::), may resume only one
thread, or all threads, depending on the value of the
`scheduler-locking' variable.  If `--all' is specified, all threads (in
all inferiors) will be resumed.  The `--all' option is ignored in
all-stop mode.  If the `--thread-group' options is specified, then all
threads in that thread group are resumed.

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

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

Example
.......

     -exec-continue
     ^running
     (gdb)
     @Hello world
     *stopped,reason='breakpoint-hit',disp='keep',bkptno='2',frame={
     func='foo',args=[],file='hello.c',fullname='/home/foo/bar/hello.c',
     line='13'}
     (gdb)


"
! !

!GDBMI_exec_continue methodsFor:'accessing'!

operation
	^ 'exec-continue'
! !

!GDBMI_exec_continue class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !