Process.st
changeset 21463 67a7ff4869e0
parent 21448 59c38b4d195a
child 21668 74cc7095adb7
--- a/Process.st	Thu Feb 16 14:48:10 2017 +0100
+++ b/Process.st	Thu Feb 16 18:10:46 2017 +0100
@@ -936,7 +936,8 @@
         aBlock value
     ] ifFalse:[
         self isDead ifTrue:[    
-            self error:'trying to register interrupt for dead process'.
+            "/ trying to register interrupt for dead process.
+            ^ self.
         ].    
         self addInterruptAction:aBlock.
         Processor scheduleForInterrupt:self.
@@ -952,7 +953,7 @@
     "
 
     "Modified: / 12-01-1997 / 00:52:05 / cg"
-    "Modified: / 14-02-2017 / 21:32:18 / stefan"
+    "Modified: / 16-02-2017 / 18:09:38 / stefan"
 !
 
 onResumeDo:aBlock