mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +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):
|
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
|
||||||
First cast argument to long
|
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
|
* sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
|
||||||
return long.
|
return long.
|
||||||
|
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
# include <dl-vdso.h>
|
# include <dl-vdso.h>
|
||||||
# include <bits/libc-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));
|
__attribute__ ((nocommon));
|
||||||
strong_alias (__vdso_clock_gettime, __GI___vdso_clock_gettime attribute_hidden)
|
strong_alias (__vdso_clock_gettime, __GI___vdso_clock_gettime attribute_hidden)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user