Move #isSystemProcess from ProcessorScheduler to Process.
authorStefan Vogel <sv@exept.de>
Fri, 09 May 1997 12:19:10 +0200
changeset 1179 e927f0c09298
parent 1178 f5f4d0c605db
child 1180 464a3dd1f90a
Move #isSystemProcess from ProcessorScheduler to Process.
DebugView.st
--- a/DebugView.st	Mon May 05 09:39:56 1997 +0200
+++ b/DebugView.st	Fri May 09 12:19:10 1997 +0200
@@ -535,7 +535,7 @@
     ].
 
     ("inspectedProcess suspendedContext isNil 
-    or:["Processor isSystemProcess:inspectedProcess"]") ifTrue:[
+    or:["inspectedProcess isSystemProcess"]") ifTrue:[
 
         terminateButton disable.
     ] ifFalse:[
@@ -931,8 +931,8 @@
     ]
 
     "Created: 24.11.1995 / 19:52:54 / cg"
-    "Modified: 3.5.1996 / 23:58:16 / stefan"
     "Modified: 27.3.1997 / 18:28:43 / cg"
+    "Modified: 17.4.1997 / 13:01:32 / stefan"
 !
 
 openOn:aProcess
@@ -1016,7 +1016,7 @@
         restartButton disable.
     ] ifFalse:[
         (aProcess suspendedContext isNil 
-        or:[Processor isSystemProcess:aProcess]) ifTrue:[
+        or:[aProcess isSystemProcess]) ifTrue:[
             terminateButton disable.
         ].
 
@@ -1040,6 +1040,7 @@
     self open
 
     "Modified: 20.3.1997 / 16:53:56 / cg"
+    "Modified: 17.4.1997 / 13:01:57 / stefan"
 ! !
 
 !DebugView methodsFor:'help'!
@@ -3488,6 +3489,6 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.157 1997-04-18 13:22:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.158 1997-05-09 10:19:10 stefan Exp $'
 ! !
 DebugView initialize!