DebugView.st
changeset 6464 ad9a50d6097e
parent 6430 7673388c3254
child 6487 ad82a074feae
equal deleted inserted replaced
6463:64ff0bdfd046 6464:ad9a50d6097e
  2397             "
  2397             "
  2398              set prio somewhat higher (by 2, to allow walkBack-update process
  2398              set prio somewhat higher (by 2, to allow walkBack-update process
  2399              to run between mine and the debugged processes prio)
  2399              to run between mine and the debugged processes prio)
  2400             "
  2400             "
  2401             Processor activeProcess 
  2401             Processor activeProcess 
  2402                 priority:((inspectedProcess priority + 2 min:16) max:9).
  2402                 priority:(((inspectedProcess priority + 2) min:(Processor highIOPriority)) max:(Processor userSchedulingPriority+1)).
  2403         ]
  2403         ]
  2404     ].
  2404     ].
  2405 
  2405 
  2406     self sensor addEventListener:self.
  2406     self sensor addEventListener:self.
  2407 
  2407 
  5868 ! !
  5868 ! !
  5869 
  5869 
  5870 !DebugView class methodsFor:'documentation'!
  5870 !DebugView class methodsFor:'documentation'!
  5871 
  5871 
  5872 version
  5872 version
  5873     ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.387 2005-11-29 19:24:16 cg Exp $'
  5873     ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.388 2006-01-09 08:57:35 cg Exp $'
  5874 ! !
  5874 ! !
  5875 
  5875 
  5876 DebugView initialize!
  5876 DebugView initialize!