summary refs log tree commit diff
path: root/time
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2020-03-24 08:52:15 +0100
committerLukasz Majewski <lukma@denx.de>2020-05-05 18:45:13 +0200
commiteb98965b53bffbefddd398e903768ea60e84c0f3 (patch)
tree3b0658b5a0a7155ce46d1c6a30e08375b0ba1c50 /time
parentad14f4f8db4548244a8f694674ad96c81da52e8b (diff)
downloadglibc-eb98965b53bffbefddd398e903768ea60e84c0f3.tar.gz
glibc-eb98965b53bffbefddd398e903768ea60e84c0f3.tar.xz
glibc-eb98965b53bffbefddd398e903768ea60e84c0f3.zip
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.
Diffstat (limited to 'time')
-rw-r--r--time/Versions1
1 files changed, 1 insertions, 0 deletions
diff --git a/time/Versions b/time/Versions
index 8788e192ce..df22ac7f6a 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;
   }
 }