The Trunk: System-cmm.603.mcz

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

The Trunk: System-cmm.603.mcz

commits-2
Chris Muller uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-cmm.603.mcz

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

Name: System-cmm.603
Author: cmm
Time: 16 October 2013, 8:05:37.01 pm
UUID: 57735e87-bcba-42bf-b86e-142343d62203
Ancestors: System-cmm.602

- Restore unused 'size' instVar as the last slot of RecentMessages.  Trunk update started crashing the VM!  The new RecentMessages>>suspendWhile: is invoked during the update process, so by changing the shape of RecentMessages to remove 'size', the reference to last inst-slot, 'isSuspended' causes mayhem.

=============== Diff against System-cmm.602 ===============

Item was changed:
  Object subclass: #RecentMessages
+ instanceVariableNames: 'methodReferences maximumSubmissionCount isSuspended size'
- instanceVariableNames: 'methodReferences maximumSubmissionCount isSuspended'
  classVariableNames: 'Default'
  poolDictionaries: ''
  category: 'System-Support'!