about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/x86_64/init-first.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-09-07 00:07:08 -0400
committerUlrich Drepper <drepper@gmail.com>2011-09-07 00:07:08 -0400
commite38ba7ab6a56d53bde4fcff250f6928fb473bc3c (patch)
tree039a4eceb3e6f4171a42c2b18eb8bde24b53e564 /sysdeps/unix/sysv/linux/x86_64/init-first.c
parentfc8bffcccf5821bca179486abef83a7f82526715 (diff)
downloadglibc-e38ba7ab6a56d53bde4fcff250f6928fb473bc3c.tar.gz
glibc-e38ba7ab6a56d53bde4fcff250f6928fb473bc3c.tar.xz
glibc-e38ba7ab6a56d53bde4fcff250f6928fb473bc3c.zip
Make sure __vdso_clock_gettime always contains a valid pointer
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/init-first.c')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/init-first.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/init-first.c b/sysdeps/unix/sysv/linux/x86_64/init-first.c
index 25cf08bd77..cb39acae13 100644
--- a/sysdeps/unix/sysv/linux/x86_64/init-first.c
+++ b/sysdeps/unix/sysv/linux/x86_64/init-first.c
@@ -17,6 +17,8 @@
    02111-1307 USA.  */
 
 #ifdef SHARED
+# include <time.h>
+# include <sysdep.h>
 # include <dl-vdso.h>
 # include <bits/libc-vdso.h>
 
@@ -27,12 +29,17 @@ strong_alias (__vdso_clock_gettime, __GI___vdso_clock_gettime attribute_hidden)
 long int (*__vdso_getcpu) (unsigned *, unsigned *, void *) attribute_hidden;
 
 
+extern long int __syscall_clock_gettime (clockid_t, struct timespec *);
+
+
 static inline void
 _libc_vdso_platform_setup (void)
 {
   PREPARE_VERSION (linux26, "LINUX_2.6", 61765110);
 
   void *p = _dl_vdso_vsym ("clock_gettime", &linux26);
+  if (p == NULL)
+    p = __syscall_clock_gettime;
   PTR_MANGLE (p);
   __GI___vdso_clock_gettime = p;