OS.st
changeset 3541 7391c94f47b3
parent 3517 48361c08000a
child 3558 5a6c4b491b95
--- a/OS.st	Wed Jun 10 11:53:06 1998 +0200
+++ b/OS.st	Wed Jun 10 12:01:56 1998 +0200
@@ -1831,14 +1831,29 @@
 !
 
 killProcess:processId
-    "kill a unix process.
-     The process terminates immediately and has no chance to perform any cleanup actions.
+    "kill an OS process.
+     The process has a no chance to do some cleanup.
 
      WARNING: in order to avoid zombie processes (on unix),
-	      you have to fetch the processes exitstatus with
-	      OperatingSystem>>getStatusOfProcess:aProcessId."
+              you may have to fetch the processes exitstatus with
+              OperatingSystem>>getStatusOfProcess:aProcessId."
 
     self subclassResponsibility
+
+    "Modified: / 10.6.1998 / 12:00:07 / cg"
+!
+
+killProcessGroup:processGroupId
+    "kill an OS process group.
+     The process has NO chance to do some cleanup.
+
+     WARNING: in order to avoid zombie processes (on unix),
+              you may have to fetch the processes exitstatus with
+              OperatingSystem>>getStatusOfProcess:aProcessId."
+
+    self subclassResponsibility
+
+    "Created: / 10.6.1998 / 12:00:26 / cg"
 !
 
 nameForSignal:aSignalNumber
@@ -1915,16 +1930,6 @@
     OSSignals at:signalNumber put:aSignal
 !
 
-primTerminateProcess:pid
-    "terminate a WIN32 process.
-    The TerminateProcess function is used to unconditionally cause
-    a process to exit. Use it only in extreme circumstances. The state of
-    global data maintained by dynamic-link libraries (DLLs)
-    may be compromised if TerminateProcess is used."
-
-    self subclassResponsibility
-!
-
 sendSignal:signalNumber to:processId
     "send a unix signal to some process (maybe myself).
      Returns false if any error occurred, true otherwise.
@@ -3235,6 +3240,6 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/OS.st,v 1.5 1998-06-05 17:10:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/OS.st,v 1.6 1998-06-10 10:01:21 cg Exp $'
 ! !
 AbstractOperatingSystem initialize!