#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 03 Nov 2016 20:23:47 +0100
changeset 20760 dcfd225589c4
parent 20759 cf0febc47067
child 20761 da3f3479c4c4
#BUGFIX by cg class: ProcessorScheduler changed: #anyUserProcessAtAll
ProcessorScheduler.st
--- a/ProcessorScheduler.st	Thu Nov 03 20:16:07 2016 +0100
+++ b/ProcessorScheduler.st	Thu Nov 03 20:23:47 2016 +0100
@@ -1593,7 +1593,8 @@
         prio := prio - 1
     ].
 
-    (scheduledProcesses contains:[:p | p notNil and:[p isUserProcess] ]) ifTrue:[
+    (scheduledProcesses notNil 
+    and:[scheduledProcesses contains:[:p | p notNil and:[p isUserProcess] ]]) ifTrue:[
         ^ true.
     ].