Skip to content

Commit

Permalink
Update vm parameter 45 description
Browse files Browse the repository at this point in the history
Fixes #5715
  • Loading branch information
jecisc committed Feb 8, 2023
1 parent 7e83c28 commit 81b0f9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions src/System-Support/SystemNavigation.class.st
Expand Up @@ -235,14 +235,6 @@ SystemNavigation >> allSentMessages [
^ sent
]

{ #category : #query }
SystemNavigation >> allSymbolsStartingWith: aString do: aBlock [

Symbol allSymbolTablesDo: [ :e |
(e beginsWith: aString)
ifTrue: [ aBlock value: e ] ]
]

{ #category : #query }
SystemNavigation >> allSentNotImplementedSelectors [

Expand All @@ -256,6 +248,14 @@ SystemNavigation >> allSentNotImplementedSelectors [
m isSelectorSymbol not and: [ (ignored includes: m) not ] ] ]
]

{ #category : #query }
SystemNavigation >> allSymbolsStartingWith: aString do: aBlock [

Symbol allSymbolTablesDo: [ :e |
(e beginsWith: aString)
ifTrue: [ aBlock value: e ] ]
]

{ #category : #query }
SystemNavigation >> allUnimplementedCalls [
"call is not a good term here, these are selectors"
Expand Down
4 changes: 2 additions & 2 deletions src/System-Support/VirtualMachine.class.st
Expand Up @@ -695,7 +695,7 @@ VirtualMachine >> parameterAt: parameterIndex put: newValue [
VirtualMachine >> parameterLabels [

"The indices and label of each VM parameter.
Only one single (machine-processable) list to maintain in the Image side, marvelous!"

^ #(
Expand Down Expand Up @@ -740,7 +740,7 @@ VirtualMachine >> parameterLabels [
42 'number of stack pages in use (read-only)'
43 'desired number of stack pages (stored in image file header, max 65535, read-write)'
44 'size of eden, in bytes (read-only)'
45 'desired size of eden, in bytes (stored in image file header, read-write)'
45 'desired size of new space (new space is 5/7 eden and 2/7 survivor space), in bytes (stored in image file header, read-write)'
46 'machine code zone size, in bytes (Cog only; otherwise nil, read-only)'
47 'desired machine code zone size (stored in image file header; Cog only; otherwise nil, read-write)'
48 'various header flags. See getCogVMFlags (read-write)'
Expand Down

0 comments on commit 81b0f9c

Please sign in to comment.