-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SapMachine (17) #1550: New malloc trace implementation #1651
SapMachine (17) #1550: New malloc trace implementation #1651
Conversation
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
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.
LGTM
} | ||
|
||
public static void main(String args[]) throws Exception { | ||
if ((!Platform.isLinux() && !Platform.isOSX()) || !"64".equals(System.getProperty("sun.arch.data.model"))) { |
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.
if ((!Platform.isLinux() && !Platform.isOSX()) || !"64".equals(System.getProperty("sun.arch.data.model"))) { | |
if ((!Platform.isLinux() && !Platform.isOSX()) || Platform.is32bit()) { |
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.
Good idea.
Hello @schmelter-sap, this pull request fulfills all formal requirements. |
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.
The backport looks good to me.
Thanks, Richard.
Downport from PR 1640 (SapMachine21).
Needed fixes for command line handling and adjusted to the old jtreg test lib.
fixes #1550