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
8242209: Increase web native thread stack size for x86 mode #159
Conversation
👋 Welcome back ajoseph! A progress list of the required criteria for merging this PR into |
/reviewers 2 |
@kevinrushforth |
@guruhb please also review this. |
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.
Looks good to me, Tested on Windows with test case added in JBS.
@arun-joseph This change now passes all automated pre-integration checks. When the change also fulfills all project specific requirements, type
Since the source branch of this PR was last updated there have been 11 commits pushed to the As you do not have Committer status in this project, an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@kevinrushforth, @guruhb) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
/integrate |
@arun-joseph |
/sponsor |
@kevinrushforth @arun-joseph The following commits have been pushed to master since your change was applied:
Your commit was automatically rebased without conflicts. Pushed as commit b1fdc45. |
CLoop interpreter used in 32-bit Windows uses 87 KB of stack space each time CLoop::execute() is called. For web native threads which has a default stack size of 320 KB, a Stack Overflow Error is raised just after two calls to execute() function. While 64-bit windows has a default stack size of 1 MB.
Fix: Increase the thread stack size of web native threads for x86 to 1 MB.
Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jfx pull/159/head:pull/159
$ git checkout pull/159