about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-09-06 23:50:04 -0400
committerUlrich Drepper <drepper@gmail.com>2011-09-06 23:50:04 -0400
commitfc8bffcccf5821bca179486abef83a7f82526715 (patch)
tree924289261286778c68661aeee5bd3c045baa59cf /sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
parenta0e1f41bd487d2202b6c1e0802c0e6c91630fbea (diff)
downloadglibc-fc8bffcccf5821bca179486abef83a7f82526715.tar.gz
glibc-fc8bffcccf5821bca179486abef83a7f82526715.tar.xz
glibc-fc8bffcccf5821bca179486abef83a7f82526715.zip
Fix handling of __vdso_clock_gettime
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/clock_gettime.c')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/clock_gettime.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/clock_gettime.c b/sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
index 9d6cd238de..7802701e22 100644
--- a/sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
+++ b/sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
@@ -2,9 +2,13 @@
 
 #ifdef SHARED
 # define SYSCALL_GETTIME(id, tp) \
-  (*__vdso_clock_gettime) (id, tp)
+  ({ long int (*f) (clockid_t, struct timespec *) = __vdso_clock_gettime; \
+  PTR_DEMANGLE (f);							  \
+  f (id, tp); })
 # define INTERNAL_GETTIME(id, tp) \
-  (*__vdso_clock_gettime) (id, tp)
+  ({ long int (*f) (clockid_t, struct timespec *) = __vdso_clock_gettime; \
+  PTR_DEMANGLE (f);							  \
+  f (id, tp); })
 #endif
 
 #include "../clock_gettime.c"