#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Sun, 03 Jul 2016 10:10:06 +0200
changeset 3981 aa54de68b481
parent 3979 0dc60bd4deac
child 3982 ae3dcd46d257
child 3983 08ddc72557a9
#FEATURE by cg class: TerminalSession comment/format in: #documentation changed: #sendInterruptSignal
TerminalSession.st
--- a/TerminalSession.st	Thu Jun 30 18:37:43 2016 +0200
+++ b/TerminalSession.st	Sun Jul 03 10:10:06 2016 +0200
@@ -21,12 +21,13 @@
     via a terminal session. Under Unix, a pseudo-tty connection
     is used; other operating systems might use other mechanisms.
     This is (currently) used by the GDBApplication, to interact
-    with gdb, cscope nd the program,
-    but can be used whereever more control is needed than a simple pipe
+    with gdb, cscope and the program.
+    It can be used wherever more control is needed than a simple pipe
     offers (such as terminal emulation, window size, CTRL-c support etc.)
 
     A lot of code has been Extracted from TerminalView, which will be refactored, 
-    once this is stable. For now, there is some code duplication (as of Summer 2014).
+    once this is stable. 
+    For now, there is some code duplication (as of Summer 2014).
 
     outStream   - the controlled program's output (a pty-half)
     inStream    - the controlled program's input (a pty-half)
@@ -536,7 +537,7 @@
 
     shellPid notNil ifTrue:[
         OperatingSystem interruptProcessGroup:shellPid.
-        "/ OperatingSystem interruptProcess:shellPid. ???
+        OperatingSystem interruptProcess:shellPid.
     ].
 
     "Modified: / 10.6.1998 / 17:49:49 / cg"