The Trunk: System-nice.505.mcz

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

The Trunk: System-nice.505.mcz

commits-2
Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.505.mcz

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

Name: System-nice.505
Author: nice
Time: 30 December 2012, 8:18:04.984 pm
UUID: ecd50a53-d129-4d62-b65b-d456f7444019
Ancestors: System-bf.504

Correct MessageTally spyOn: [] MNU on new COG VM

=============== Diff against System-bf.504 ===============

Item was changed:
  ----- Method: MessageTally>>computeGCStats (in category 'private') -----
  computeGCStats
  "Compute the deltas in the GC stats.  Serves for reporting, hibernating and unhibernating."
  SmalltalkImage current getVMParameters keysAndValuesDo:
  [ :idx :gcVal |
+ gcVal isNumber ifTrue: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!
- gcVal ifNotNil: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-nice.505.mcz

Nicolas Cellier
I hope it's not too late for inclusion in 4.4 because this one is annoying...

Nicolas

2012/12/30  <[hidden email]>:

> Nicolas Cellier uploaded a new version of System to project The Trunk:
> http://source.squeak.org/trunk/System-nice.505.mcz
>
> ==================== Summary ====================
>
> Name: System-nice.505
> Author: nice
> Time: 30 December 2012, 8:18:04.984 pm
> UUID: ecd50a53-d129-4d62-b65b-d456f7444019
> Ancestors: System-bf.504
>
> Correct MessageTally spyOn: [] MNU on new COG VM
>
> =============== Diff against System-bf.504 ===============
>
> Item was changed:
>   ----- Method: MessageTally>>computeGCStats (in category 'private') -----
>   computeGCStats
>         "Compute the deltas in the GC stats.  Serves for reporting, hibernating and unhibernating."
>         SmalltalkImage current getVMParameters keysAndValuesDo:
>                 [ :idx :gcVal |
> +               gcVal isNumber ifTrue: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!
> -               gcVal ifNotNil: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!
>
>

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-nice.505.mcz

Chris Muller-3
If not, we can at least copy it to the squeak43 repository and then an
"Update Squeak" will catch it.

Also, since this is typically a tool used by developers, chances are
they will be following trunk anyway.

On Sun, Dec 30, 2012 at 1:25 PM, Nicolas Cellier
<[hidden email]> wrote:

> I hope it's not too late for inclusion in 4.4 because this one is annoying...
>
> Nicolas
>
> 2012/12/30  <[hidden email]>:
>> Nicolas Cellier uploaded a new version of System to project The Trunk:
>> http://source.squeak.org/trunk/System-nice.505.mcz
>>
>> ==================== Summary ====================
>>
>> Name: System-nice.505
>> Author: nice
>> Time: 30 December 2012, 8:18:04.984 pm
>> UUID: ecd50a53-d129-4d62-b65b-d456f7444019
>> Ancestors: System-bf.504
>>
>> Correct MessageTally spyOn: [] MNU on new COG VM
>>
>> =============== Diff against System-bf.504 ===============
>>
>> Item was changed:
>>   ----- Method: MessageTally>>computeGCStats (in category 'private') -----
>>   computeGCStats
>>         "Compute the deltas in the GC stats.  Serves for reporting, hibernating and unhibernating."
>>         SmalltalkImage current getVMParameters keysAndValuesDo:
>>                 [ :idx :gcVal |
>> +               gcVal isNumber ifTrue: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!
>> -               gcVal ifNotNil: [gcStats at: idx put: (gcVal - (gcStats at: idx))]]!
>>
>>
>