#FEATURE by exept
authorClaus Gittinger <cg@exept.de>
Thu, 14 Nov 2019 22:45:58 +0100
changeset 19283 6be91d6c13b8
parent 19282 1843509999ca
child 19284 c4888f8cc28b
#FEATURE by exept class: TimerQueueMonitor changed: #updateStatus:
TimerQueueMonitor.st
--- a/TimerQueueMonitor.st	Thu Nov 14 22:41:45 2019 +0100
+++ b/TimerQueueMonitor.st	Thu Nov 14 22:45:58 2019 +0100
@@ -287,6 +287,12 @@
                 process := aTimeout at:'process'.
                 sema := aTimeout at:'sema'.
 
+                process isNil ifTrue:[
+                    sema notNil ifTrue:[
+                        process := sema waitingProcesses firstIfEmpty:nil
+                    ]
+                ].
+
                 processName := process isNil ifTrue:[''] ifFalse:[process name].
                 actionName := action isNil ifTrue:[''] ifFalse:[action printString].
                 semaName := sema isNil ifTrue:[''] ifFalse:[sema displayString].