mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
nptl: Move pthread_gettattr_np into libc
This is part of the libpthread removal project: <https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html> Use __getline instead of __getdelim to avoid a localplt failure. Likewise for __getrlimit/getrlimit. The abilist updates were performed by: git ls-files 'sysdeps/unix/sysv/linux/**/libc.abilist' \ | while read x ; do echo "GLIBC_2.32 pthread_getattr_np F" >> $x done python3 scripts/move-symbol-to-libc.py --only-linux pthread_getattr_np The private export of __pthread_getaffinity_np is no longer needed, but the hidden alias still necessary so that the symbol can be exported with versioned_symbol. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@ -1935,6 +1935,7 @@ GLIBC_2.2.3 __rpc_thread_svc_fdset F
|
||||
GLIBC_2.2.3 __rpc_thread_svc_max_pollfd F
|
||||
GLIBC_2.2.3 __rpc_thread_svc_pollfd F
|
||||
GLIBC_2.2.3 fnmatch F
|
||||
GLIBC_2.2.3 pthread_getattr_np F
|
||||
GLIBC_2.2.3 sprofil F
|
||||
GLIBC_2.2.4 dl_iterate_phdr F
|
||||
GLIBC_2.2.4 getgrouplist F
|
||||
@ -2181,6 +2182,7 @@ GLIBC_2.30 tgkill F
|
||||
GLIBC_2.30 twalk_r F
|
||||
GLIBC_2.32 pthread_attr_setaffinity_np F
|
||||
GLIBC_2.32 pthread_getaffinity_np F
|
||||
GLIBC_2.32 pthread_getattr_np F
|
||||
GLIBC_2.32 pthread_sigmask F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
|
@ -177,7 +177,7 @@ GLIBC_2.2 pthread_yield F
|
||||
GLIBC_2.2 pwrite F
|
||||
GLIBC_2.2 pwrite64 F
|
||||
GLIBC_2.2 sem_timedwait F
|
||||
GLIBC_2.2.3 pthread_getattr_np F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
|
@ -1877,6 +1877,7 @@ GLIBC_2.2.3 __rpc_thread_svc_fdset F
|
||||
GLIBC_2.2.3 __rpc_thread_svc_max_pollfd F
|
||||
GLIBC_2.2.3 __rpc_thread_svc_pollfd F
|
||||
GLIBC_2.2.3 fnmatch F
|
||||
GLIBC_2.2.3 pthread_getattr_np F
|
||||
GLIBC_2.2.3 sprofil F
|
||||
GLIBC_2.2.4 dl_iterate_phdr F
|
||||
GLIBC_2.2.4 getgrouplist F
|
||||
@ -2108,6 +2109,7 @@ GLIBC_2.30 tgkill F
|
||||
GLIBC_2.30 twalk_r F
|
||||
GLIBC_2.32 pthread_attr_setaffinity_np F
|
||||
GLIBC_2.32 pthread_getaffinity_np F
|
||||
GLIBC_2.32 pthread_getattr_np F
|
||||
GLIBC_2.32 pthread_sigmask F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
|
@ -169,7 +169,7 @@ GLIBC_2.2 sigwait F
|
||||
GLIBC_2.2 system F
|
||||
GLIBC_2.2 tcdrain F
|
||||
GLIBC_2.2 write F
|
||||
GLIBC_2.2.3 pthread_getattr_np F
|
||||
GLIBC_2.2.3 __libpthread_version_placeholder F
|
||||
GLIBC_2.2.6 __libpthread_version_placeholder F
|
||||
GLIBC_2.28 call_once F
|
||||
GLIBC_2.28 cnd_broadcast F
|
||||
|
Reference in New Issue
Block a user