GDBThreadGroupStartedEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 07 Sep 2014 14:42:02 +0100
changeset 35 c17ecf90e446
parent 13 45ec9353003f
child 45 deb908479a37
permissions -rw-r--r--
Initial support for thread groups, threads and breakpoints.

"{ Package: 'jv:libgdbs' }"

GDBThreadGroupEvent subclass:#GDBThreadGroupStartedEvent
	instanceVariableNames:'pid'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBThreadGroupStartedEvent class methodsFor:'accessing - GDB value descriptors'!

gdbValueDescriptor
    ^ (super gdbValueDescriptor)
        define: #pid as: Integer;
        yourself

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

!GDBThreadGroupStartedEvent methodsFor:'accessing'!

pid
    ^ pid
!

type
	^  'thread-group-started'
! !