mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
y2038: Add support for 64-bit time on legacy ABIs
A new build flag, _TIME_BITS, enables the usage of the newer 64-bit time symbols for legacy ABI (where 32-bit time_t is default). The 64 bit time support is only enabled if LFS (_FILE_OFFSET_BITS=64) is also used. Different than LFS support, the y2038 symbols are added only for the required ABIs (armhf, csky, hppa, i386, m68k, microblaze, mips32, mips64-n32, nios2, powerpc32, sparc32, s390-32, and sh). The ABIs with 64-bit time support are unchanged, both for symbol and types redirection. On Linux the full 64-bit time support requires a minimum of kernel version v5.1. Otherwise, the 32-bit fallbacks are used and might results in error with overflow return code (EOVERFLOW). The i686-gnu does not yet support 64-bit time. This patch exports following rediretions to support 64-bit time: * libc: adjtime adjtimex clock_adjtime clock_getres clock_gettime clock_nanosleep clock_settime cnd_timedwait ctime ctime_r difftime fstat fstatat futimens futimes futimesat getitimer getrusage gettimeofday gmtime gmtime_r localtime localtime_r lstat_time lutimes mktime msgctl mtx_timedlock nanosleep nanosleep ntp_gettime ntp_gettimex ppoll pselec pselect pthread_clockjoin_np pthread_cond_clockwait pthread_cond_timedwait pthread_mutex_clocklock pthread_mutex_timedlock pthread_rwlock_clockrdlock pthread_rwlock_clockwrlock pthread_rwlock_timedrdlock pthread_rwlock_timedwrlock pthread_timedjoin_np recvmmsg sched_rr_get_interval select sem_clockwait semctl semtimedop sem_timedwait setitimer settimeofday shmctl sigtimedwait stat thrd_sleep time timegm timerfd_gettime timerfd_settime timespec_get utime utimensat utimes utimes wait3 wait4 * librt: aio_suspend mq_timedreceive mq_timedsend timer_gettime timer_settime * libanl: gai_suspend Reviewed-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@@ -102,8 +102,11 @@ sysdep_headers += sys/mount.h sys/acct.h \
|
||||
bits/ipc-perm.h \
|
||||
bits/struct_stat.h \
|
||||
bits/struct_stat_time64_helper.h \
|
||||
bits/types/struct_msqid64_ds.h \
|
||||
bits/types/struct_msqid64_ds_helper.h \
|
||||
bits/types/struct_semid64_ds.h \
|
||||
bits/types/struct_semid64_ds_helper.h \
|
||||
bits/types/struct_shmid64_ds.h \
|
||||
bits/types/struct_shmid64_ds_helper.h
|
||||
|
||||
tests += tst-clone tst-clone2 tst-clone3 tst-fanotify tst-personality \
|
||||
|
@@ -1,3 +1,4 @@
|
||||
%include <time64-compat.h>
|
||||
libc {
|
||||
GLIBC_2.0 {
|
||||
# functions used in inline functions or macros
|
||||
@@ -185,6 +186,81 @@ libc {
|
||||
getdents64; gettid; tgkill;
|
||||
}
|
||||
GLIBC_2.32 {
|
||||
}
|
||||
GLIBC_2.34 {
|
||||
%ifdef TIME64_NON_DEFAULT
|
||||
# 64-bit time_t support
|
||||
__adjtime64;
|
||||
___adjtimex64;
|
||||
__clock_adjtime64;
|
||||
__clock_getres64;
|
||||
__clock_gettime64;
|
||||
__clock_nanosleep_time64;
|
||||
__clock_settime64;
|
||||
__cnd_timedwait64;
|
||||
__ctime64;
|
||||
__ctime64_r;
|
||||
__difftime64;
|
||||
__fstat64_time64;
|
||||
__fstatat64_time64;
|
||||
__futimens64;
|
||||
__futimes64;
|
||||
__futimesat64;
|
||||
__getitimer64;
|
||||
__getrusage64;
|
||||
__gettimeofday64;
|
||||
__gmtime64;
|
||||
__gmtime64_r;
|
||||
__localtime64;
|
||||
__localtime64_r;
|
||||
__lstat64_time64;
|
||||
__lutimes64;
|
||||
__mktime64;
|
||||
__msgctl64;
|
||||
__mtx_timedlock64;
|
||||
__nanosleep64;
|
||||
__nanosleep64;
|
||||
__ntp_gettime64;
|
||||
__ntp_gettimex64;
|
||||
__ppoll64;
|
||||
__pselec64;
|
||||
__pselect64;
|
||||
__pthread_clockjoin_np64;
|
||||
__pthread_cond_clockwait64;
|
||||
__pthread_cond_timedwait64;
|
||||
__pthread_mutex_clocklock64;
|
||||
__pthread_mutex_timedlock64;
|
||||
__pthread_rwlock_clockrdlock64;
|
||||
__pthread_rwlock_clockwrlock64;
|
||||
__pthread_rwlock_timedrdlock64;
|
||||
__pthread_rwlock_timedwrlock64;
|
||||
__pthread_timedjoin_np64;
|
||||
__recvmmsg64;
|
||||
__sched_rr_get_interval64;
|
||||
__select64;
|
||||
__sem_clockwait64;
|
||||
__semctl64;
|
||||
__semtimedop64;
|
||||
__sem_timedwait64;
|
||||
__setitimer64;
|
||||
__settimeofday64;
|
||||
__shmctl64;
|
||||
__sigtimedwait64;
|
||||
__stat64_time64;
|
||||
__thrd_sleep64;
|
||||
__time64;
|
||||
__timegm64;
|
||||
__timerfd_gettime64;
|
||||
__timerfd_settime64;
|
||||
__timespec_get64;
|
||||
__timespec_getres64;
|
||||
__utime64;
|
||||
__utimensat64;
|
||||
__utimes64;
|
||||
__utimes64;
|
||||
__wait3_time64;
|
||||
__wait4_time64;
|
||||
%endif
|
||||
}
|
||||
GLIBC_PRIVATE {
|
||||
# functions used in other libraries
|
||||
@@ -204,3 +280,24 @@ ld {
|
||||
__nptl_change_stack_perm;
|
||||
}
|
||||
}
|
||||
|
||||
librt {
|
||||
GLIBC_2.34 {
|
||||
%ifdef TIME64_NON_DEFAULT
|
||||
# 64-bit time_t support
|
||||
__aio_suspend_time64;
|
||||
__mq_timedsend_time64;
|
||||
__mq_timedreceive_time64;
|
||||
__timer_gettime64;
|
||||
__timer_settime64;
|
||||
%endif
|
||||
}
|
||||
}
|
||||
|
||||
libanl {
|
||||
%ifdef TIME64_NON_DEFAULT
|
||||
GLIBC_2.34 {
|
||||
__gai_suspend_time64;
|
||||
}
|
||||
%endif
|
||||
}
|
||||
|
@@ -1,3 +1,4 @@
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
GLIBC_2.4 gai_cancel F
|
||||
GLIBC_2.4 gai_error F
|
||||
GLIBC_2.4 gai_suspend F
|
||||
|
@@ -190,16 +190,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -1,3 +1,8 @@
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 aio_cancel F
|
||||
GLIBC_2.4 aio_cancel64 F
|
||||
GLIBC_2.4 aio_error F
|
||||
|
@@ -1,3 +1,4 @@
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
GLIBC_2.4 gai_cancel F
|
||||
GLIBC_2.4 gai_error F
|
||||
GLIBC_2.4 gai_suspend F
|
||||
|
@@ -187,16 +187,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -1,3 +1,8 @@
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 aio_cancel F
|
||||
GLIBC_2.4 aio_cancel64 F
|
||||
GLIBC_2.4 aio_error F
|
||||
|
2
sysdeps/unix/sysv/linux/arm/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/arm/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -26,6 +26,7 @@ typedef __syscall_ulong_t msgqnum_t;
|
||||
typedef __syscall_ulong_t msglen_t;
|
||||
|
||||
#include <bits/types/struct_msqid_ds.h>
|
||||
#include <bits/types/struct_msqid64_ds.h>
|
||||
|
||||
/* Define options for message queue functions. */
|
||||
#define MSG_NOERROR 010000 /* no error if message is too big */
|
||||
|
@@ -22,6 +22,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <bits/timesize.h>
|
||||
#include <bits/types/struct_semid_ds.h>
|
||||
#include <bits/types/struct_semid64_ds.h>
|
||||
|
||||
/* Flags for `semop'. */
|
||||
#define SEM_UNDO 0x1000 /* undo the operation on exit */
|
||||
|
@@ -43,6 +43,7 @@ __BEGIN_DECLS
|
||||
typedef __syscall_ulong_t shmatt_t;
|
||||
|
||||
#include <bits/types/struct_shmid_ds.h>
|
||||
#include <bits/types/struct_shmid64_ds.h>
|
||||
|
||||
#ifdef __USE_MISC
|
||||
|
||||
|
@@ -77,6 +77,16 @@ __BEGIN_DECLS
|
||||
/* Tune a POSIX clock. */
|
||||
extern int clock_adjtime (__clockid_t __clock_id, struct timex *__utx) __THROW;
|
||||
|
||||
#ifdef __USE_TIME_BITS64
|
||||
# if defined(__REDIRECT_NTH)
|
||||
extern int __REDIRECT_NTH (clock_adjtime, (__clockid_t __clock_id,
|
||||
struct timex *__utx),
|
||||
__clock_adjtime64);
|
||||
# else
|
||||
# define clock_adjtime __clock_adjtime64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
#endif /* use GNU */
|
||||
|
||||
|
@@ -21,8 +21,8 @@
|
||||
#include "thrd_priv.h"
|
||||
|
||||
int
|
||||
___cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex,
|
||||
const struct __timespec64 *restrict time_point)
|
||||
__cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex,
|
||||
const struct __timespec64 *restrict time_point)
|
||||
{
|
||||
int err_code = __pthread_cond_timedwait64 ((pthread_cond_t *) cond,
|
||||
(pthread_mutex_t *) mutex,
|
||||
@@ -31,9 +31,9 @@ ___cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex,
|
||||
}
|
||||
|
||||
#if __TIMESIZE == 64
|
||||
strong_alias (___cnd_timedwait64, ___cnd_timedwait)
|
||||
strong_alias (__cnd_timedwait64, ___cnd_timedwait)
|
||||
#else
|
||||
libc_hidden_ver (___cnd_timedwait64, __cnd_timedwait64)
|
||||
libc_hidden_def (__cnd_timedwait64)
|
||||
|
||||
int
|
||||
___cnd_timedwait (cnd_t *restrict cond, mtx_t *restrict mutex,
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.29 gai_cancel F
|
||||
GLIBC_2.29 gai_error F
|
||||
GLIBC_2.29 gai_suspend F
|
||||
GLIBC_2.29 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2277,16 +2277,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -33,3 +33,8 @@ GLIBC_2.29 timer_delete F
|
||||
GLIBC_2.29 timer_getoverrun F
|
||||
GLIBC_2.29 timer_gettime F
|
||||
GLIBC_2.29 timer_settime F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
|
2
sysdeps/unix/sysv/linux/csky/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/csky/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
37
sysdeps/unix/sysv/linux/features-time64.h
Normal file
37
sysdeps/unix/sysv/linux/features-time64.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/* Features part to handle 64-bit time_t support.
|
||||
Copyright (C) 2021 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
/* We need to know the word size in order to check the time size. */
|
||||
#include <bits/wordsize.h>
|
||||
#include <bits/timesize.h>
|
||||
|
||||
#if defined _TIME_BITS
|
||||
# if _TIME_BITS == 64
|
||||
# if ! defined (_FILE_OFFSET_BITS) || _FILE_OFFSET_BITS != 64
|
||||
# error "_TIME_BITS=64 is allowed only with _FILE_OFFSET_BITS=64"
|
||||
# elif __TIMESIZE == 32
|
||||
# define __USE_TIME_BITS64 1
|
||||
# endif
|
||||
# elif _TIME_BITS == 32
|
||||
# if __TIMESIZE > 32
|
||||
# error "_TIME_BITS=32 is not compatible with __TIMESIZE > 32"
|
||||
# endif
|
||||
# else
|
||||
# error Invalid _TIME_BITS value (can only be 32 or 64-bit)
|
||||
# endif
|
||||
#endif
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2231,16 +2231,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/hppa/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/hppa/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2414,17 +2414,84 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __isnanf128 F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/i386/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/i386/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -7,8 +7,6 @@ extern ssize_t __libc_msgrcv (int msqid, void *msgp, size_t msgsz,
|
||||
extern int __libc_msgsnd (int msqid, const void *msgp, size_t msgsz,
|
||||
int msgflg);
|
||||
|
||||
# include <bits/types/struct_msqid64_ds.h>
|
||||
|
||||
# if __TIMESIZE == 64
|
||||
# define __msgctl64 __msgctl
|
||||
# else
|
||||
|
@@ -3,8 +3,6 @@
|
||||
|
||||
#ifndef _ISOMAC
|
||||
|
||||
# include <bits/types/struct_shmid64_ds.h>
|
||||
|
||||
# if __TIMESIZE == 64
|
||||
# define __shmctl64 __shmctl
|
||||
# else
|
||||
|
@@ -23,6 +23,7 @@
|
||||
|
||||
# ifndef _ISOMAC
|
||||
|
||||
extern int __adjtimex (struct timex *__ntx);
|
||||
libc_hidden_proto (__adjtimex)
|
||||
|
||||
# include <time.h>
|
||||
|
@@ -1,3 +1,4 @@
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
GLIBC_2.4 gai_cancel F
|
||||
GLIBC_2.4 gai_error F
|
||||
GLIBC_2.4 gai_suspend F
|
||||
|
@@ -191,16 +191,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -1,3 +1,8 @@
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 aio_cancel F
|
||||
GLIBC_2.4 aio_cancel64 F
|
||||
GLIBC_2.4 aio_error F
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2358,16 +2358,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/m68k/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/m68k/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2,3 +2,4 @@ GLIBC_2.18 gai_cancel F
|
||||
GLIBC_2.18 gai_error F
|
||||
GLIBC_2.18 gai_suspend F
|
||||
GLIBC_2.18 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2328,16 +2328,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -33,3 +33,8 @@ GLIBC_2.18 timer_delete F
|
||||
GLIBC_2.18 timer_getoverrun F
|
||||
GLIBC_2.18 timer_gettime F
|
||||
GLIBC_2.18 timer_settime F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.18 gai_cancel F
|
||||
GLIBC_2.18 gai_error F
|
||||
GLIBC_2.18 gai_suspend F
|
||||
GLIBC_2.18 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2325,16 +2325,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -33,3 +33,8 @@ GLIBC_2.18 timer_delete F
|
||||
GLIBC_2.18 timer_getoverrun F
|
||||
GLIBC_2.18 timer_gettime F
|
||||
GLIBC_2.18 timer_settime F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
|
2
sysdeps/unix/sysv/linux/microblaze/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/microblaze/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2323,16 +2323,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
@@ -2321,16 +2321,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
2
sysdeps/unix/sysv/linux/mips/mips32/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/mips/mips32/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2329,16 +2329,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/mips/mips64/n32/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/mips/mips64/n32/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -21,8 +21,8 @@
|
||||
#include "thrd_priv.h"
|
||||
|
||||
int
|
||||
___mtx_timedlock64 (mtx_t *restrict mutex,
|
||||
const struct __timespec64 *restrict time_point)
|
||||
__mtx_timedlock64 (mtx_t *restrict mutex,
|
||||
const struct __timespec64 *restrict time_point)
|
||||
{
|
||||
int err_code = __pthread_mutex_timedlock64 ((pthread_mutex_t *)mutex,
|
||||
time_point);
|
||||
@@ -30,9 +30,9 @@ ___mtx_timedlock64 (mtx_t *restrict mutex,
|
||||
}
|
||||
|
||||
#if __TIMESIZE == 64
|
||||
strong_alias (___mtx_timedlock64, ___mtx_timedlock)
|
||||
strong_alias (__mtx_timedlock64, ___mtx_timedlock)
|
||||
#else
|
||||
libc_hidden_ver (___mtx_timedlock64, __mtx_timedlock64)
|
||||
libc_hidden_def (__mtx_timedlock64)
|
||||
|
||||
int
|
||||
___mtx_timedlock (mtx_t *restrict mutex,
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.21 gai_cancel F
|
||||
GLIBC_2.21 gai_error F
|
||||
GLIBC_2.21 gai_suspend F
|
||||
GLIBC_2.21 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2367,16 +2367,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -33,3 +33,8 @@ GLIBC_2.21 timer_delete F
|
||||
GLIBC_2.21 timer_getoverrun F
|
||||
GLIBC_2.21 timer_gettime F
|
||||
GLIBC_2.21 timer_settime F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
|
2
sysdeps/unix/sysv/linux/nios2/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/nios2/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2385,16 +2385,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
@@ -2418,16 +2418,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2383,16 +2383,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/s390/s390-32/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/s390/s390-32/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -21,7 +21,6 @@
|
||||
#include <ipc_priv.h>
|
||||
#include <sysdep.h>
|
||||
#include <shlib-compat.h>
|
||||
#include <bits/types/struct_semid64_ds.h> /* For __semid64_ds. */
|
||||
#include <linux/posix_types.h> /* For __kernel_mode_t. */
|
||||
|
||||
/* The struct used to issue the syscall. For architectures that assume
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2238,16 +2238,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2235,16 +2235,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -32,6 +32,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/sh/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/sh/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -2,3 +2,4 @@ GLIBC_2.2.3 gai_cancel F
|
||||
GLIBC_2.2.3 gai_error F
|
||||
GLIBC_2.2.3 gai_suspend F
|
||||
GLIBC_2.2.3 getaddrinfo_a F
|
||||
GLIBC_2.34 __gai_suspend_time64 F
|
||||
|
@@ -2376,16 +2376,83 @@ GLIBC_2.33 mknod F
|
||||
GLIBC_2.33 mknodat F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.34 ___adjtimex64 F
|
||||
GLIBC_2.34 __adjtime64 F
|
||||
GLIBC_2.34 __clock_adjtime64 F
|
||||
GLIBC_2.34 __clock_getres64 F
|
||||
GLIBC_2.34 __clock_gettime64 F
|
||||
GLIBC_2.34 __clock_nanosleep_time64 F
|
||||
GLIBC_2.34 __clock_settime64 F
|
||||
GLIBC_2.34 __cnd_timedwait64 F
|
||||
GLIBC_2.34 __ctime64 F
|
||||
GLIBC_2.34 __ctime64_r F
|
||||
GLIBC_2.34 __difftime64 F
|
||||
GLIBC_2.34 __fstat64_time64 F
|
||||
GLIBC_2.34 __fstatat64_time64 F
|
||||
GLIBC_2.34 __futimens64 F
|
||||
GLIBC_2.34 __futimes64 F
|
||||
GLIBC_2.34 __futimesat64 F
|
||||
GLIBC_2.34 __getitimer64 F
|
||||
GLIBC_2.34 __getrusage64 F
|
||||
GLIBC_2.34 __gettimeofday64 F
|
||||
GLIBC_2.34 __gmtime64 F
|
||||
GLIBC_2.34 __gmtime64_r F
|
||||
GLIBC_2.34 __libc_start_main F
|
||||
GLIBC_2.34 __localtime64 F
|
||||
GLIBC_2.34 __localtime64_r F
|
||||
GLIBC_2.34 __lstat64_time64 F
|
||||
GLIBC_2.34 __lutimes64 F
|
||||
GLIBC_2.34 __mktime64 F
|
||||
GLIBC_2.34 __msgctl64 F
|
||||
GLIBC_2.34 __mtx_timedlock64 F
|
||||
GLIBC_2.34 __nanosleep64 F
|
||||
GLIBC_2.34 __ntp_gettime64 F
|
||||
GLIBC_2.34 __ntp_gettimex64 F
|
||||
GLIBC_2.34 __ppoll64 F
|
||||
GLIBC_2.34 __pselect64 F
|
||||
GLIBC_2.34 __pthread_cleanup_routine F
|
||||
GLIBC_2.34 __pthread_clockjoin_np64 F
|
||||
GLIBC_2.34 __pthread_cond_clockwait64 F
|
||||
GLIBC_2.34 __pthread_cond_timedwait64 F
|
||||
GLIBC_2.34 __pthread_key_create F
|
||||
GLIBC_2.34 __pthread_mutex_clocklock64 F
|
||||
GLIBC_2.34 __pthread_mutex_lock F
|
||||
GLIBC_2.34 __pthread_mutex_timedlock64 F
|
||||
GLIBC_2.34 __pthread_mutex_unlock F
|
||||
GLIBC_2.34 __pthread_register_cancel F
|
||||
GLIBC_2.34 __pthread_register_cancel_defer F
|
||||
GLIBC_2.34 __pthread_rwlock_clockrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_clockwrlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedrdlock64 F
|
||||
GLIBC_2.34 __pthread_rwlock_timedwrlock64 F
|
||||
GLIBC_2.34 __pthread_timedjoin_np64 F
|
||||
GLIBC_2.34 __pthread_unregister_cancel F
|
||||
GLIBC_2.34 __pthread_unregister_cancel_restore F
|
||||
GLIBC_2.34 __pthread_unwind_next F
|
||||
GLIBC_2.34 __recvmmsg64 F
|
||||
GLIBC_2.34 __sched_rr_get_interval64 F
|
||||
GLIBC_2.34 __select64 F
|
||||
GLIBC_2.34 __sem_clockwait64 F
|
||||
GLIBC_2.34 __sem_timedwait64 F
|
||||
GLIBC_2.34 __semctl64 F
|
||||
GLIBC_2.34 __semtimedop64 F
|
||||
GLIBC_2.34 __setitimer64 F
|
||||
GLIBC_2.34 __settimeofday64 F
|
||||
GLIBC_2.34 __shmctl64 F
|
||||
GLIBC_2.34 __sigtimedwait64 F
|
||||
GLIBC_2.34 __stat64_time64 F
|
||||
GLIBC_2.34 __thrd_sleep64 F
|
||||
GLIBC_2.34 __time64 F
|
||||
GLIBC_2.34 __timegm64 F
|
||||
GLIBC_2.34 __timerfd_gettime64 F
|
||||
GLIBC_2.34 __timerfd_settime64 F
|
||||
GLIBC_2.34 __timespec_get64 F
|
||||
GLIBC_2.34 __timespec_getres64 F
|
||||
GLIBC_2.34 __utime64 F
|
||||
GLIBC_2.34 __utimensat64 F
|
||||
GLIBC_2.34 __utimes64 F
|
||||
GLIBC_2.34 __wait3_time64 F
|
||||
GLIBC_2.34 __wait4_time64 F
|
||||
GLIBC_2.34 call_once F
|
||||
GLIBC_2.34 cnd_broadcast F
|
||||
GLIBC_2.34 cnd_destroy F
|
||||
|
@@ -34,6 +34,11 @@ GLIBC_2.3.4 mq_setattr F
|
||||
GLIBC_2.3.4 mq_timedreceive F
|
||||
GLIBC_2.3.4 mq_timedsend F
|
||||
GLIBC_2.3.4 mq_unlink F
|
||||
GLIBC_2.34 __aio_suspend_time64 F
|
||||
GLIBC_2.34 __mq_timedreceive_time64 F
|
||||
GLIBC_2.34 __mq_timedsend_time64 F
|
||||
GLIBC_2.34 __timer_gettime64 F
|
||||
GLIBC_2.34 __timer_settime64 F
|
||||
GLIBC_2.4 lio_listio F
|
||||
GLIBC_2.4 lio_listio64 F
|
||||
GLIBC_2.7 __mq_open_2 F
|
||||
|
2
sysdeps/unix/sysv/linux/sparc/sparc32/time64-compat.h
Normal file
2
sysdeps/unix/sysv/linux/sparc/sparc32/time64-compat.h
Normal file
@@ -0,0 +1,2 @@
|
||||
/* ABI support 64-bit in non-default mode. */
|
||||
#define TIME64_NON_DEFAULT
|
@@ -47,9 +47,31 @@ extern int timerfd_settime (int __ufd, int __flags,
|
||||
const struct itimerspec *__utmr,
|
||||
struct itimerspec *__otmr) __THROW;
|
||||
|
||||
#ifdef __USE_TIME_BITS64
|
||||
# if defined(__REDIRECT_NTH)
|
||||
extern int __REDIRECT_NTH (timerfd_settime,
|
||||
(int __ufd, int __flags,
|
||||
const struct itimerspec *__restrict __value,
|
||||
struct itimerspec *__restrict __ovalue),
|
||||
__timerfd_settime64);
|
||||
# else
|
||||
# define timerfd_settime __timerfd_settime64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Return the next expiration time of UFD. */
|
||||
extern int timerfd_gettime (int __ufd, struct itimerspec *__otmr) __THROW;
|
||||
|
||||
#ifdef __USE_TIME_BITS64
|
||||
# if defined(__REDIRECT_NTH)
|
||||
extern int __REDIRECT_NTH (timerfd_gettime, (int __ufd,
|
||||
struct itimerspec *__otmr),
|
||||
__timerfd_gettime64);
|
||||
# else
|
||||
# define timerfd_gettime __timerfd_gettime64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif /* sys/timerfd.h */
|
||||
|
@@ -54,17 +54,34 @@ struct ntptimeval
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
extern int __adjtimex (struct timex *__ntx) __THROW;
|
||||
#ifndef __USE_TIME_BITS64
|
||||
extern int adjtimex (struct timex *__ntx) __THROW;
|
||||
extern int ntp_gettimex (struct ntptimeval *__ntv) __THROW;
|
||||
|
||||
#ifdef __REDIRECT_NTH
|
||||
# ifdef __REDIRECT_NTH
|
||||
extern int __REDIRECT_NTH (ntp_gettime, (struct ntptimeval *__ntv),
|
||||
ntp_gettimex);
|
||||
#else
|
||||
# define ntp_gettime ntp_gettimex
|
||||
#endif
|
||||
ntp_gettimex);
|
||||
# else
|
||||
# define ntp_gettime ntp_gettimex
|
||||
# endif
|
||||
extern int ntp_adjtime (struct timex *__tntx) __THROW;
|
||||
#else
|
||||
# ifdef __REDIRECT_NTH
|
||||
extern int __REDIRECT_NTH (adjtimex, (struct timex *__ntx),
|
||||
___adjtimex64);
|
||||
extern int __REDIRECT_NTH (ntp_gettime, (struct ntptimeval *__ntv),
|
||||
__ntp_gettime64);
|
||||
extern int __REDIRECT_NTH (ntp_gettimex, (struct ntptimeval *__ntv),
|
||||
__ntp_gettimex64);
|
||||
extern int __REDIRECT_NTH (ntp_adjtime, (struct timex *__ntx),
|
||||
___adjtimex64);
|
||||
# else
|
||||
# define adjtimex ___adjtimex64
|
||||
# define ntp_adjtime ___adjtimex64
|
||||
# define ntp_gettime __ntp_gettime64
|
||||
# define ntp_gettimex __ntp_gettimex64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
|
||||
|
Reference in New Issue
Block a user