mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
nptl: Move pthread_sigmask implementation to libc
This is part of the libpthread removal project: <https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html> A new symbol version is added on libc to force loading failure instead of lazy binding one for newly binaries with old loaders. Checked with a build against all affected ABIs.
This commit is contained in:
@ -1278,6 +1278,7 @@ GLIBC_2.2 pthread_self F
|
||||
GLIBC_2.2 pthread_setcancelstate F
|
||||
GLIBC_2.2 pthread_setcanceltype F
|
||||
GLIBC_2.2 pthread_setschedparam F
|
||||
GLIBC_2.2 pthread_sigmask F
|
||||
GLIBC_2.2 ptrace F
|
||||
GLIBC_2.2 ptsname F
|
||||
GLIBC_2.2 ptsname_r F
|
||||
@ -2053,6 +2054,7 @@ GLIBC_2.30 twalk_r F
|
||||
GLIBC_2.31 msgctl F
|
||||
GLIBC_2.31 semctl F
|
||||
GLIBC_2.31 shmctl F
|
||||
GLIBC_2.32 pthread_sigmask F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -136,7 +136,6 @@ GLIBC_2.2 pthread_setcancelstate F
|
||||
GLIBC_2.2 pthread_setcanceltype F
|
||||
GLIBC_2.2 pthread_setconcurrency F
|
||||
GLIBC_2.2 pthread_setspecific F
|
||||
GLIBC_2.2 pthread_sigmask F
|
||||
GLIBC_2.2 pthread_spin_destroy F
|
||||
GLIBC_2.2 pthread_spin_init F
|
||||
GLIBC_2.2 pthread_spin_lock F
|
||||
|
@ -1278,6 +1278,7 @@ GLIBC_2.2 pthread_self F
|
||||
GLIBC_2.2 pthread_setcancelstate F
|
||||
GLIBC_2.2 pthread_setcanceltype F
|
||||
GLIBC_2.2 pthread_setschedparam F
|
||||
GLIBC_2.2 pthread_sigmask F
|
||||
GLIBC_2.2 ptrace F
|
||||
GLIBC_2.2 ptsname F
|
||||
GLIBC_2.2 ptsname_r F
|
||||
@ -2050,6 +2051,7 @@ GLIBC_2.30 getdents64 F
|
||||
GLIBC_2.30 gettid F
|
||||
GLIBC_2.30 tgkill F
|
||||
GLIBC_2.30 twalk_r F
|
||||
GLIBC_2.32 pthread_sigmask F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -136,7 +136,6 @@ GLIBC_2.2 pthread_setcancelstate F
|
||||
GLIBC_2.2 pthread_setcanceltype F
|
||||
GLIBC_2.2 pthread_setconcurrency F
|
||||
GLIBC_2.2 pthread_setspecific F
|
||||
GLIBC_2.2 pthread_sigmask F
|
||||
GLIBC_2.2 pthread_spin_destroy F
|
||||
GLIBC_2.2 pthread_spin_init F
|
||||
GLIBC_2.2 pthread_spin_lock F
|
||||
|
Reference in New Issue
Block a user