GDBMI_stack_select_frame.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 25 Aug 2014 09:53:27 +0100
changeset 31 1d8d532f27fd
parent 12 568a2971c977
child 78 c24e7d8bc881
permissions -rw-r--r--
Fixed leaking processes when using GDBSimulatorProcess. Fixed simulation of real pipes and proceses so event pump/dispatcher is correctly terminated when using GDBSimulatorProcess

"{ Package: 'jv:libgdbs' }"

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

!GDBMI_stack_select_frame class methodsFor:'documentation'!

documentation
"
The `-stack-select-frame' Command
---------------------------------

Synopsis
........

      -stack-select-frame FRAMENUM

   Change the selected frame.  Select a different frame FRAMENUM on the
stack.

   This command in deprecated in favor of passing the `--frame' option
to every command.

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

The corresponding {No value for `GDBN'} commands are `frame', `up',
`down', `select-frame', `up-silent', and `down-silent'.

Example
.......

     (gdb)
     -stack-select-frame 2
     ^done
     (gdb)


"
! !

!GDBMI_stack_select_frame methodsFor:'accessing'!

operation
	^ 'stack-select-frame'
! !

!GDBMI_stack_select_frame class methodsFor:'documentation'!

version_HG

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