GDBConnection.st
changeset 41 fb48207b6104
parent 39 2b9d2f75906f
child 42 499dc5d38707
--- a/GDBConnection.st	Wed Sep 17 09:01:56 2014 +0100
+++ b/GDBConnection.st	Thu Sep 18 09:32:30 2014 +0100
@@ -108,6 +108,10 @@
     "Modified: / 07-09-2014 / 22:38:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+eventDispatchProcess
+    ^ eventDispatchProcess
+!
+
 eventDispatchSingle: aGDBEvent
     TraceEvents ifTrue:[ 
         Logger log: ('event loop: broadcasting %1 (%2)' bindWith: aGDBEvent class name with: aGDBEvent token) severity: #trace facility: 'GDB'
@@ -271,6 +275,7 @@
     eventQueueLock := RecursionLock new.
     eventQueueNotifier := Semaphore new.
     eventAnnouncer := Announcer new.
+    eventAnnouncer subscriptionRegistry subscriptionClass: GDBEventSubscription.
     eventAnnouncerInternal := Announcer new.    
     outstandingCommands := Set new.
     recorder := GDBSessionRecorder new.
@@ -278,7 +283,7 @@
     aGDBProcess connection: self.
 
     "Created: / 20-06-2014 / 21:40:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 23-06-2014 / 09:22:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 18-09-2014 / 00:11:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 release