GDBThreadGroup.st
changeset 86 7f53d51a0a65
parent 81 5e07808d349f
child 90 6046abc9ddf4
--- a/GDBThreadGroup.st	Tue Jul 11 23:37:04 2017 +0200
+++ b/GDBThreadGroup.st	Wed Jul 12 16:27:29 2017 +0200
@@ -132,11 +132,11 @@
     | thread |
 
     thread := self threadWithId:aGDBThreadExitedEvent threadId.
-    thread setTerminated.
+    thread setStatus: GDBThreadStateTerminated theOneAndOnlyInstance.
     aGDBThreadExitedEvent setThread:thread.
 
     "Created: / 07-09-2014 / 21:25:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 22-09-2014 / 00:50:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 12-07-2017 / 13:42:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBThreadGroup methodsFor:'initialization'!