1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Add missing symbols to Version files

Some symbols have explicit versioned_symbol or compat_symbol markers
in the sources, but no corresponding entry in the Versions files.
This presently works because the local: * directive is only applied
to the base version.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
This commit is contained in:
Florian Weimer
2021-06-02 07:32:19 +02:00
parent 217b6dc298
commit 186cd80b1e
18 changed files with 73 additions and 47 deletions

View File

@ -8,6 +8,11 @@ libc {
GLIBC_2.3 {
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
}
GLIBC_2.3.3 {
# Changed PTHREAD_STACK_MIN.
pthread_attr_setstack;
pthread_attr_setstacksize;
}
GLIBC_2.4 {
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
}
@ -25,13 +30,6 @@ libc {
}
}
libpthread {
GLIBC_2.3.3 {
# Changed PTHREAD_STACK_MIN.
pthread_attr_setstack; pthread_attr_setstacksize;
}
}
librt {
GLIBC_2.3 {
# AIO functions.

View File

@ -17,9 +17,6 @@ libc {
# s*
scandir64;
}
GLIBC_2.3.3 {
posix_fadvise64; posix_fallocate64;
}
GLIBC_2.11 {
fallocate64;
}