GDBMI_enable_frame_filters.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 12 Jun 2014 01:21:45 +0100
changeset 12 568a2971c977
child 72 eb4eea3ebf4c
permissions -rw-r--r--
Generated classes for MI commands. List of command as well as documentation was taken directly from GDB sources.

"{ Package: 'jv:libgdbs' }"

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

!GDBMI_enable_frame_filters class methodsFor:'documentation'!

documentation
"
The `-enable-frame-filters' Command
-----------------------------------

     -enable-frame-filters

   {No value for `GDBN'} allows Python-based frame filters to affect
the output of the MI commands relating to stack traces.  As there is no
way to implement this in a fully backward-compatible way, a front end
must request that this functionality be enabled.

   Once enabled, this feature cannot be disabled.

   Note that if Python support has not been compiled into {No value for
`GDBN'}, this command will still succeed (and do nothing).


"
! !

!GDBMI_enable_frame_filters methodsFor:'accessing'!

operation
	^ 'enable-frame-filters'
! !