# HG changeset patch # User Stefan Vogel # Date 863173150 -7200 # Node ID e927f0c09298e5340e5f4b864d881f4401c61d0c # Parent f5f4d0c605dbebf2fd6f7353044f5f9696cf48dd Move #isSystemProcess from ProcessorScheduler to Process. diff -r f5f4d0c605db -r e927f0c09298 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!