The Trunk: Kernel-ar.326.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Kernel-ar.326.mcz

commits-2
Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ar.326.mcz

==================== Summary ====================

Name: Kernel-ar.326
Author: ar
Time: 10 December 2009, 12:36:28 pm
UUID: a3bced30-2678-534f-a9cc-dc8328748a76
Ancestors: Kernel-ul.325

Processor anyProcessesAbove: should consult allSubInstances of Process.

=============== Diff against Kernel-ul.325 ===============

Item was changed:
  ----- Method: ProcessorScheduler>>anyProcessesAbove: (in category 'private') -----
  anyProcessesAbove: highestPriority
  "Do any instances of Process exist with higher priorities?"
 
+ ^(Process allSubInstances select: [:aProcess |
- ^(Process allInstances "allSubInstances" select: [:aProcess |
  aProcess priority > highestPriority]) isEmpty
  "If anyone ever makes a subclass of Process, be sure to use allSubInstances."!