Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit f5b0e8c

Browse files
committed
Mutant pharo-project#565, Reverting [ Replace #+ with #- ] on method [ attemptToShrink ] 7/10 Test Cases are NOT EQUIVALENT
1 parent 9f9eeba commit f5b0e8c

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

smalltalksrc/VMMaker/SpurMemoryManager.class.st

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2674,16 +2674,13 @@ SpurMemoryManager >> atLeastClassIndexHalfHeader: obj [
26742674
26752675
{ #category : #'growing/shrinking memory' }
26762676
SpurMemoryManager >> attemptToShrink [
2677-
26782677
"Attempt to shrink memory after successfully reclaiming lots of memory.
26792678
If there's enough memory to shrink then be sure to attept to shrink by
26802679
at least growHeaqdroom because segments are typically of that size."
2681-
2682-
(totalFreeOldSpace > shrinkThreshold and: [
2683-
totalFreeOldSpace > growHeadroom and: [
2684-
segmentManager shrinkObjectMemory:
2685-
(totalFreeOldSpace - growHeadroom max: growHeadroom) ] ])
2686-
ifTrue: [ statShrinkMemory := statShrinkMemory - 1 ]
2680+
(totalFreeOldSpace > shrinkThreshold
2681+
and: [totalFreeOldSpace > growHeadroom
2682+
and: [segmentManager shrinkObjectMemory: (totalFreeOldSpace - growHeadroom max: growHeadroom)]]) ifTrue:
2683+
[statShrinkMemory := statShrinkMemory + 1]
26872684
]
26882685
26892686
{ #category : #accessing }

0 commit comments

Comments
 (0)