From: Lukasz Majewski Date: Tue, 24 Mar 2020 07:52:15 +0000 (+0100) Subject: y2038: Export __clock_gettime64 to be usable in other libraries X-Git-Tag: glibc-2.32~360 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb98965b53bffbefddd398e903768ea60e84c0f3;p=thirdparty%2Fglibc.git y2038: Export __clock_gettime64 to be usable in other libraries In the glibc project calls to clock_gettime shall be replaced with __clock_gettime64, which is supporting 64 bit time. To allow that the __clock_gettime64 needs to be exported as a GLIBC_PRIVATE symbol. --- diff --git a/time/Versions b/time/Versions index 8788e192ce3..df22ac7f6a1 100644 --- a/time/Versions +++ b/time/Versions @@ -77,5 +77,6 @@ libc { GLIBC_PRIVATE { # same as clock_gettime; used in other libraries __clock_gettime; + __clock_gettime64; } }