Skip to content

Commit

Permalink
Changing variable name to avoid name clash
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Mar 8, 2023
1 parent 67f8548 commit e68538e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions smalltalksrc/VMMaker/StackInterpreter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ Class {
'imageReader',
'imageWriter',
'pendingFinalizationSignals',
'imageVersion'
'imageVersionNumber'
],
#classVars : [
'AlternateHeaderHasPrimFlag',
Expand Down Expand Up @@ -7185,7 +7185,7 @@ StackInterpreter >> getImageHeaderFlags [
{ #category : #accessing }
StackInterpreter >> getImageVersion [

^ imageVersion
^ imageVersionNumber
]

{ #category : #accessing }
Expand Down Expand Up @@ -7672,7 +7672,7 @@ StackInterpreter >> initialize [
statProcessSwitch := statStackPageDivorce :=
statIdleUsecs := 0.
messageCount := 0.
imageVersion := 0.
imageVersionNumber := 0.
]

{ #category : #initialization }
Expand Down Expand Up @@ -13602,7 +13602,7 @@ StackInterpreter >> setImageName: aString [
StackInterpreter >> setImageVersion: aValue [

"It is a short value"
imageVersion := aValue bitAnd: 16rFFFF
imageVersionNumber := aValue bitAnd: 16rFFFF
]

{ #category : #'process primitive support' }
Expand Down

0 comments on commit e68538e

Please sign in to comment.