GDBThreadCreatedEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 13 Jun 2014 07:27:24 +0100
changeset 13 45ec9353003f
child 35 c17ecf90e446
permissions -rw-r--r--
Added classes for each async event type. i.e., for breakpoint-inserted a GDBBreakpointInsertedEvent is generated. f the class does not exists it is either generated (when in development mode) or an event of base type is emmited (in this case GDBNotificationEvent).

"{ Package: 'jv:libgdbs' }"

GDBNotificationEvent subclass:#GDBThreadCreatedEvent
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBThreadCreatedEvent methodsFor:'accessing'!

type
	^  'thread-created'
! !