RFR: 8292608: [AIX] Broken build after 8291945
Tyler Steele
tsteele at openjdk.org
Thu Aug 18 18:03:32 UTC 2022
On Thu, 18 Aug 2022 15:18:01 GMT, Tyler Steele <tsteele at openjdk.org> wrote:
> Improvements to the os class for AIX contained a minor bug.
>
>
> - _page_sizes.add(AIX::_page_size);
> + _page_sizes.add(os::vm_page_size);
>
>
> `AIX::_page_size` is an `int`, but `os::vm_page_size` is a `() -> int`. Adding the parens (changing vm_page_size to a function call) does the trick.
Sweet efficiency 🚀 !
-------------
PR: https://git.openjdk.org/jdk/pull/9922
More information about the hotspot-runtime-dev
mailing list