GDBMI_exec_continue.st
changeset 12 568a2971c977
child 18 6bf3d5c400d1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBMI_exec_continue.st	Thu Jun 12 01:21:45 2014 +0100
@@ -0,0 +1,66 @@
+"{ 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'
+! !
+