GDBConnection.st
changeset 31 1d8d532f27fd
parent 29 6f19bc300b1f
child 75 0b8ce7d74318
equal deleted inserted replaced
30:520ddea6851f 31:1d8d532f27fd
   281 released: status
   281 released: status
   282     TraceProcesses ifTrue:[ 
   282     TraceProcesses ifTrue:[ 
   283         Logger log: ('gdb process: exited with status %1' bindWith: status code)  severity: #trace facility: 'GDB'.
   283         Logger log: ('gdb process: exited with status %1' bindWith: status code)  severity: #trace facility: 'GDB'.
   284     ].
   284     ].
   285     TraceProcesses ifTrue:[ 
   285     TraceProcesses ifTrue:[ 
   286         Logger log: ('gdb process: waiting for event pump to finish' bindWith: status code)  severity: #trace facility: 'GDB'.
   286         Logger log: 'gdb process: waiting for event pump to finish' severity: #trace facility: 'GDB'.
   287     ].
   287     ].
   288     [ eventPumpProcess notNil ] whileTrue:[ 
   288     [ eventPumpProcess notNil ] whileTrue:[ 
   289         Delay waitForMilliseconds: 200.  
   289         Delay waitForMilliseconds: 200.  
   290     ].
   290     ].
   291     TraceProcesses ifTrue:[ 
   291     TraceProcesses ifTrue:[ 
   294     eventQueueNotifier signalForAll.           
   294     eventQueueNotifier signalForAll.           
   295     process release.
   295     process release.
   296     inferiorPTY release.
   296     inferiorPTY release.
   297 
   297 
   298     "Created: / 26-05-2014 / 21:31:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   298     "Created: / 26-05-2014 / 21:31:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   299     "Modified: / 20-06-2014 / 21:37:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   299     "Modified: / 25-08-2014 / 08:55:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   300 ! !
   300 ! !
   301 
   301 
   302 !GDBConnection class methodsFor:'documentation'!
   302 !GDBConnection class methodsFor:'documentation'!
   303 
   303 
   304 version_HG
   304 version_HG