GDBDebugFlags.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 04 Jun 2014 09:37:08 +0100
changeset 9 5cc8797f6523
parent 7 7a51f98e7162
child 23 a7eb888c81b5
permissions -rw-r--r--
Make simple example with -gdb-exit command working gdb := GDB new. gdb send: (GDBCLICommand new value:'-gdb-exit'). gdb release.

"{ Package: 'jv:libgdbs' }"

SharedPool subclass:#GDBDebugFlags
	instanceVariableNames:''
	classVariableNames:'TraceEvents TraceProcesses'
	poolDictionaries:''
	category:'GDB-Private'
!

!GDBDebugFlags class methodsFor:'initialization'!

initialize
    "Invoked at system start or when the class is dynamically loaded."

    "/ please change as required (and remove this comment)

    TraceEvents := true.

    "Modified: / 02-06-2014 / 23:24:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !


GDBDebugFlags initialize!