The Trunk: Kernel-jar.1375.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-jar.1375.mcz

commits-2
Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-jar.1375.mcz

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

Name: Kernel-jar.1375
Author: jar
Time: 28 February 2021, 1:39:18.242036 pm
UUID: 5fa0cf53-5852-2949-b7f0-a13d8729925b
Ancestors: Kernel-codefrau.1374

Fix Process class >> #forContext:priority: potentially crashing image

=============== Diff against Kernel-codefrau.1374 ===============

Item was changed:
  ----- Method: Process class>>forContext:priority: (in category 'instance creation') -----
  forContext: aContext priority: anInteger
  "Answer an instance of me that has suspended aContext at priority
  anInteger."
 
  | newProcess |
  newProcess := self new.
+ newProcess suspendedContext: aContext asContext.
- newProcess suspendedContext: aContext.
  newProcess priority: anInteger.
  ^newProcess!