-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create an adequately sized J9Heap to store the UpcallThunk
Currently, the J9Heap size to store the UpcallThunk is restricted to the page size. If the thunk is greater than the page size, then the existing code ends in an infinite loop creating J9Heaps of page size. The correct sized J9Heap will never be created so the code will never progress. To resolve this issue, an adequately sized J9Heap, aligned to the page size, is created to store the UpcallThunk. Signed-off-by: Babneet Singh <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 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