This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Limit heap growth on Android #20473
Merged
Merged
Limit heap growth on Android #20473
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
cd9045e
Start
dnfield de357b2
bytes
dnfield 834417b
..
dnfield 1ed2d8d
merge
dnfield 5bebd55
testss
dnfield eb485ef
Merge remote-tracking branch 'upstream/master' into android_mem_limit
dnfield 0847dcd
shell args
dnfield f2a9f84
make it simpler
dnfield 96ad46e
Merge remote-tracking branch 'upstream/master' into android_mem_limit
dnfield 0a345dd
xster review
dnfield 4612bac
merge
dnfield a118c90
Use totalMem and allow it to be overridden in manifest
dnfield File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
..
- Loading branch information
commit 834417bfe2fc03284411cf549ad552a975e0c34b
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can
oldGenHeapSizeMegaBytesbe provided as a shell command line flag inshell/common/switches.h?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could but then we lose some static type checking here. Is there some reason you have in mind to do it that way?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be more consistent with how other engine settings are assigned and would avoid a proliferation of
nativeInitargumentsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done