Skip to content

Commit

Permalink
Merge pull request #751 from tesonep/fixing-memory-map-in-osx
Browse files Browse the repository at this point in the history
Fixing memory map in OSX
  • Loading branch information
tesonep authored Mar 11, 2024
2 parents 55f077d + ce82587 commit 0419f57
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ VMMemoryMapConfigurationFor64Bits >> codeZoneInitialAddress [

"self cppIf: WIN32 ifTrue: [ ^ 16r440000000 ""17GB"" ]."

^ 16r300000000 "12GB"
^ 16r320000000 "12.5GB"
]

{ #category : #accessing }
Expand All @@ -25,7 +25,7 @@ VMMemoryMapConfigurationFor64Bits >> newSpaceInitialAddress [

" self cppIf: WIN32 ifTrue: [ ^ 16r480000000 ""18GB"" ]."

^ 16r340000000 "13GB"
^ 16r360000000 "13.5GB"
]

{ #category : #'initial addresses' }
Expand All @@ -47,5 +47,5 @@ VMMemoryMapConfigurationFor64Bits >> stackPagesInitialAddress [

"self cppIf: WIN32 ifTrue: [ ^ 16r400000000 ""16GB"" ]."

^ 16r280000000 "10GB"
^ 16r300000000 "12GB"
]

0 comments on commit 0419f57

Please sign in to comment.