#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Thu, 24 May 2018 21:09:48 +0200
changeset 23015 a3e627daaf92
parent 23014 0499ae2fb456
child 23016 ff70b217d135
#REFACTORING by cg class: ProcessorScheduler changed: #terminateNoSignal:
ProcessorScheduler.st
--- a/ProcessorScheduler.st	Thu May 24 21:09:36 2018 +0200
+++ b/ProcessorScheduler.st	Thu May 24 21:09:48 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
               All Rights Reserved
@@ -2156,7 +2158,7 @@
          (we cannot destroy the chair we are sitting on ... :-)
         "
         zombie notNil ifTrue:[
-            self error:'active process is zombie' mayProceed:true.
+            self proceedableError:'active process is zombie'.
             self class threadDestroy:zombie.
         ].
 
@@ -2179,6 +2181,7 @@
     "Modified: / 20-03-1997 / 16:03:39 / cg"
     "Modified (comment): / 10-08-2011 / 19:57:08 / cg"
     "Modified: / 01-08-2017 / 17:29:00 / stefan"
+    "Modified: / 24-05-2018 / 21:04:28 / Claus Gittinger"
 !
 
 yield