mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Linux: Move timer_getoverrun from librt to libc
The symbol was moved using scripts/move-symbol-to-libc.py. The way the ABI intransition is implemented is changed with this commit: the implementation is now consolidated in one file with a TIMER_T_WAS_INT_COMPAT check. Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
@@ -2062,6 +2062,7 @@ GLIBC_2.2 swprintf F
|
||||
GLIBC_2.2 swscanf F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
GLIBC_2.2 timer_getoverrun F
|
||||
GLIBC_2.2 ungetwc F
|
||||
GLIBC_2.2 vfwprintf F
|
||||
GLIBC_2.2 vfwscanf F
|
||||
@@ -2655,6 +2656,7 @@ GLIBC_2.34 thrd_exit F
|
||||
GLIBC_2.34 thrd_join F
|
||||
GLIBC_2.34 timer_create F
|
||||
GLIBC_2.34 timer_delete F
|
||||
GLIBC_2.34 timer_getoverrun F
|
||||
GLIBC_2.34 timespec_getres F
|
||||
GLIBC_2.34 tss_create F
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
GLIBC_2.1 __librt_version_placeholder F
|
||||
GLIBC_2.2 timer_getoverrun F
|
||||
GLIBC_2.2 timer_gettime F
|
||||
GLIBC_2.2 timer_settime F
|
||||
GLIBC_2.3 __librt_version_placeholder F
|
||||
|
||||
@@ -14,7 +14,7 @@ libc {
|
||||
librt {
|
||||
GLIBC_2.3.3 {
|
||||
# Changed timer_t.
|
||||
timer_getoverrun; timer_gettime;
|
||||
timer_gettime;
|
||||
timer_settime;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1793,6 +1793,7 @@ GLIBC_2.2 timegm F
|
||||
GLIBC_2.2 timelocal F
|
||||
GLIBC_2.2 timer_create F
|
||||
GLIBC_2.2 timer_delete F
|
||||
GLIBC_2.2 timer_getoverrun F
|
||||
GLIBC_2.2 times F
|
||||
GLIBC_2.2 timezone D 0x8
|
||||
GLIBC_2.2 tmpfile F
|
||||
@@ -2246,6 +2247,7 @@ GLIBC_2.3.3 sys_sigabbrev D 0x208
|
||||
GLIBC_2.3.3 sys_siglist D 0x208
|
||||
GLIBC_2.3.3 timer_create F
|
||||
GLIBC_2.3.3 timer_delete F
|
||||
GLIBC_2.3.3 timer_getoverrun F
|
||||
GLIBC_2.3.4 __chk_fail F
|
||||
GLIBC_2.3.4 __fprintf_chk F
|
||||
GLIBC_2.3.4 __gets_chk F
|
||||
@@ -2490,6 +2492,7 @@ GLIBC_2.34 thrd_exit F
|
||||
GLIBC_2.34 thrd_join F
|
||||
GLIBC_2.34 timer_create F
|
||||
GLIBC_2.34 timer_delete F
|
||||
GLIBC_2.34 timer_getoverrun F
|
||||
GLIBC_2.34 timespec_getres F
|
||||
GLIBC_2.34 tss_create F
|
||||
GLIBC_2.34 tss_delete F
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
GLIBC_2.1 __librt_version_placeholder F
|
||||
GLIBC_2.2 timer_getoverrun F
|
||||
GLIBC_2.2 timer_gettime F
|
||||
GLIBC_2.2 timer_settime F
|
||||
GLIBC_2.3 __librt_version_placeholder F
|
||||
GLIBC_2.3.3 timer_getoverrun F
|
||||
GLIBC_2.3.3 timer_gettime F
|
||||
GLIBC_2.3.3 timer_settime F
|
||||
GLIBC_2.3.4 __librt_version_placeholder F
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
#include <sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c>
|
||||
Reference in New Issue
Block a user