RFR: 8336529: (fs) UnixFileAttributeViews setTimes() failing on armhf, Ubuntu noble [v2]
Jaikiran Pai
jpai at openjdk.org
Fri Jul 19 04:01:36 UTC 2024
On Thu, 18 Jul 2024 21:48:46 GMT, Vladimir Petko <vpetko at openjdk.org> wrote:
> instead of doing an extra function I should go #if defined(__linux__) && _TIME_BITS==64 to look up 64 bit version.
I think using the (build time) `_TIME_BITS==64` for deciding whether or not to include code which does a lookup at runtime for the 64 bit variant of these symbols, may not be correct. Merely relying on `__linux__` I think should be enough. Alan's recent suggested example will make it simpler without the necessity of introducing a new function.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/20208#issuecomment-2238069177
More information about the nio-dev
mailing list