GDBThread.st
changeset 55 437ee6413c74
parent 53 63669c2c0f9e
child 67 c4ac76afe03d
--- a/GDBThread.st	Fri Feb 27 14:45:03 2015 +0100
+++ b/GDBThread.st	Fri Feb 27 16:47:55 2015 +0100
@@ -52,15 +52,17 @@
             depth := result propertyAt: #depth.
             result := debugger send: (GDBMI_stack_list_frames new arguments: { '--thread' . id . 0 . depth - 1 }).
             frames := result propertyAt: #stack.
-            frames do:[:each | each propertyAt: #thread put: self ].
+            frames do:[:each | 
+                each debugger: debugger.
+                each propertyAt: #thread put: self 
+            ].
             frames
         ].
     ].
     ^ stack value
 
     "Created: / 09-09-2014 / 00:02:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 22-09-2014 / 00:19:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 01-10-2014 / 01:49:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 27-02-2015 / 15:10:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 status