[squeak-dev] The Trunk: Kernel-bf.721.mcz

Bert Freudenberg bert at freudenbergs.de
Wed Aug 7 15:44:07 UTC 2013


On 2013-08-07, at 17:34, Frank Shearar <frank.shearar at gmail.com> wrote:

> On 7 August 2013 14:55,  <commits at source.squeak.org> wrote:
>> Bert Freudenberg uploaded a new version of Kernel to project The Trunk:
>> http://source.squeak.org/trunk/Kernel-bf.721.mcz
>> 
>> ==================== Summary ====================
>> 
>> Name: Kernel-bf.721
>> Author: bf
>> Time: 7 August 2013, 3:17:21.93 pm
>> UUID: d0943c86-6850-45b6-9176-7a43025357b5
>> Ancestors: Kernel-nice.720
>> 
>> Bob Arning's fix for Delay snapshotting.
>> 
>> =============== Diff against Kernel-nice.720 ===============
>> 
>> Item was changed:
>>  ----- Method: Delay class>>restoreResumptionTimes (in category 'snapshotting') -----
>>  restoreResumptionTimes
>>        "Private!! Restore the resumption times of all scheduled Delays after a snapshot or clock roll-over. This method should be called only while the AccessProtect semaphore is held."
>> 
>>        | newBaseTime |
>>        newBaseTime := Time millisecondClockValue.
>>        SuspendedDelays do: [:d | d adjustResumptionTimeOldBase: 0 newBase: newBaseTime].
>>        ActiveDelay == nil ifFalse: [
>>                ActiveDelay adjustResumptionTimeOldBase: 0 newBase: newBaseTime.
>>        ].
>> +       ActiveDelayStartTime := newBaseTime.
>>  !
> 
> Doesn't this need merging? I pushed Kernel-fbs.800 not too long ago.
> 
> frank

Argh. I had updated before but switched to an older image for testing the snapshotting ... I'll do it.

- Bert -




More information about the Squeak-dev mailing list