TerminalSession.st
changeset 3096 e3e3a28294f5
parent 3095 10715ba9921b
child 3097 529fbe182ce0
equal deleted inserted replaced
3095:10715ba9921b 3096:e3e3a28294f5
   564     StreamError handle:[:ex |
   564     StreamError handle:[:ex |
   565         Transcript show:'Terminal(PTY-reader) [error]: '; showCR:ex description.
   565         Transcript show:'Terminal(PTY-reader) [error]: '; showCR:ex description.
   566     ] do:[
   566     ] do:[
   567         [true] whileTrue:[
   567         [true] whileTrue:[
   568             AbortOperationRequest handle:[:ex |
   568             AbortOperationRequest handle:[:ex |
       
   569                 ^ self
   569             ] do:[
   570             ] do:[
   570                 |n sensor|
   571                 |n sensor|
   571 
   572 
   572                 readerDelay notNil ifTrue:[ Delay waitForSeconds:readerDelay].
   573                 readerDelay notNil ifTrue:[ Delay waitForSeconds:readerDelay].
   573                 outStream readWait.
   574                 outStream readWait.
   637 ! !
   638 ! !
   638 
   639 
   639 !TerminalSession class methodsFor:'documentation'!
   640 !TerminalSession class methodsFor:'documentation'!
   640 
   641 
   641 version
   642 version
   642     ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.11 2013-08-19 12:46:37 cg Exp $'
   643     ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.12 2013-08-19 13:37:06 cg Exp $'
   643 !
   644 !
   644 
   645 
   645 version_CVS
   646 version_CVS
   646     ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.11 2013-08-19 12:46:37 cg Exp $'
   647     ^ '$Header: /cvs/stx/stx/libbasic2/TerminalSession.st,v 1.12 2013-08-19 13:37:06 cg Exp $'
   647 ! !
   648 ! !
   648 
   649 
   649 
   650 
   650 TerminalSession initialize!
   651 TerminalSession initialize!