GDBRunningEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 01 Jun 2017 12:15:43 +0100
changeset 79 303c4edc75ad
parent 78 c24e7d8bc881
child 91 472a4841a8b6
permissions -rw-r--r--
`GDBProcess` refatored to have console interpreter on STDIN/STDOUT ...and spawn an extra MI2 interpreter on extra-allocated PTY. This way we'll get command completion, command editing and so on for free. For details, see Pedro Alves's explanation: https://sourceware.org/ml/gdb/2017-01/msg00039.html

"{ Package: 'jv:libgdbs' }"

"{ NameSpace: Smalltalk }"

GDBExecutionEvent subclass:#GDBRunningEvent
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!


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

description
    ^ (super description)
        define:#'thread-id' as:Integer;
        yourself

    "Created: / 08-09-2014 / 22:00:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    "Modified: / 22-09-2014 / 23:38:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!GDBRunningEvent methodsFor:'accessing'!

threadId
    ^ thread_id

    "Created: / 08-09-2014 / 22:01:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

type
	^  'running'
! !

!GDBRunningEvent class methodsFor:'documentation'!

version_HG

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