On Fri, 20 Mar 2026 04:38:34 GMT, David Holmes <[email protected]> wrote:
>> Currently we have multiple dladdr - implementations on AIX in the codebase.
>> One of those is in hotspot, one in libawt.
>> We should unify those if possible.
>
> src/hotspot/os/aix/porting_aix.cpp line 431:
>
>> 429: int JVM_dladdr(void *addr, Dl_info *info) {
>> 430: return dladdr(addr, info);
>> 431: }
>
> This is not what I meant. I wanted this to be part of the actual JVM API -
> listed in jvm.h (probably ./os/posix/include/jvm_md.h) and implemented in
> jvm.cpp as a JVM_LEAF entry (ifdef AIX of course).
Hi David, should we really have such one platform - related functions in the
JVM API ? I thought this API was for multi-platform functions?
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/30295#discussion_r2965652238