GDBThreadGroup.st
changeset 129 661e16236c67
parent 124 74c24ce40251
child 144 342b6dfe3a6f
equal deleted inserted replaced
128:8d7c075a06b9 129:661e16236c67
   206     aGDBThreadExitedEvent setThread:thread.
   206     aGDBThreadExitedEvent setThread:thread.
   207 
   207 
   208     "Created: / 07-09-2014 / 21:25:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   208     "Created: / 07-09-2014 / 21:25:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   209     "Modified: / 12-07-2017 / 13:42:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   209     "Modified: / 12-07-2017 / 13:42:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   210     "Modified: / 15-01-2018 / 09:44:09 / jv"
   210     "Modified: / 15-01-2018 / 09:44:09 / jv"
       
   211 !
       
   212 
       
   213 onThreadSelectedEvent: aGDBThreadSelectedEvent
       
   214     | thread |
       
   215 
       
   216     thread := self threadWithId:aGDBThreadSelectedEvent threadId.
       
   217     aGDBThreadSelectedEvent 
       
   218         setThread: thread;
       
   219         setFrame: (thread stack at: (aGDBThreadSelectedEvent frame level + 1))
       
   220 
       
   221     "Created: / 29-07-2018 / 22:21:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   211 ! !
   222 ! !
   212 
   223 
   213 !GDBThreadGroup methodsFor:'initialization'!
   224 !GDBThreadGroup methodsFor:'initialization'!
   214 
   225 
   215 initialize
   226 initialize