RFR: JDK-8302043: [ AIX ] Safefetch fails for bad_addressN and bad_address32 [v2]
Varada M
duke at openjdk.org
Wed Feb 8 12:41:15 UTC 2023
On Wed, 8 Feb 2023 12:35:07 GMT, Thomas Stuefe <stuefe at openjdk.org> wrote:
>> Varada M has updated the pull request incrementally with two additional commits since the last revision:
>>
>> - Updated the segfault address for AIX
>> - Updated the segfault address for AIX
>
> src/hotspot/share/utilities/vmError.hpp line 195:
>
>> 193: #else
>> 194: static constexpr intptr_t segfault_address = (1*K);
>> 195: #endif //AIX
>
> Nit, could you please use
>
> static constexpr intptr_t segfault_address = AIX_ONLY(-1) NOT_AIX(1*K);
>
> instead? Its a bit tighter coding.
>
> Thanks!
Okay. Thank you
-------------
PR: https://git.openjdk.org/jdk/pull/12468
More information about the hotspot-runtime-dev
mailing list