#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Tue, 08 Nov 2016 14:44:27 +0100
changeset 20893 b8156b8d4067
parent 20892 765ca5daafd7
child 20894 d87bb03e9619
#REFACTORING by cg class: MiniDebugger changed: #showProcesses:
MiniDebugger.st
--- a/MiniDebugger.st	Tue Nov 08 14:42:49 2016 +0100
+++ b/MiniDebugger.st	Tue Nov 08 14:44:27 2016 +0100
@@ -1080,7 +1080,8 @@
             ' pri=' _errorPrint. (p priority printStringPaddedTo:2) _errorPrint.
             ' creator:' _errorPrint. (p creatorId printStringPaddedTo:5) _errorPrint.
             ' group:' _errorPrint. (p processGroupId printStringPaddedTo:5) _errorPrint.
-            ' sys:' _errorPrint. (p isSystemProcess ifTrue:'y' ifFalse:'n') _errorPrint.
+            "/ ' sys:' _errorPrint. (p isSystemProcess ifTrue:'y' ifFalse:'n') _errorPrint.
+            (p isSystemProcess ifTrue:'sys' ifFalse:'usr') _errorPrint.
             ' ui:' _errorPrint. (p isGUIProcess ifTrue:'y' ifFalse:'n') _errorPrint.
             ' name=''' _errorPrint. p name _errorPrint.
             '''' _errorPrintCR.