mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
* sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
Return long. (__vdso_clock_gettime): Likewise.
This commit is contained in:
parent
78b767a0a6
commit
52386be756
@ -2,6 +2,9 @@
|
||||
|
||||
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
|
||||
First cast argument to long
|
||||
* sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
|
||||
Return long.
|
||||
(__vdso_clock_gettime): Likewise.
|
||||
* sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
|
||||
return long.
|
||||
|
||||
|
@ -20,9 +20,9 @@
|
||||
# include <dl-vdso.h>
|
||||
# include <bits/libc-vdso.h>
|
||||
|
||||
int (*__vdso_gettimeofday) (struct timeval *, void *) attribute_hidden;
|
||||
long int (*__vdso_gettimeofday) (struct timeval *, void *) attribute_hidden;
|
||||
|
||||
int (*__vdso_clock_gettime) (clockid_t, struct timespec *)
|
||||
long int (*__vdso_clock_gettime) (clockid_t, struct timespec *)
|
||||
__attribute__ ((nocommon));
|
||||
strong_alias (__vdso_clock_gettime, __GI___vdso_clock_gettime attribute_hidden)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user