diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:48:09 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-23 09:51:57 +0200 |
commit | 8a229ee93c17cf5d0aff9ba81a3acfa146f1dae0 (patch) | |
tree | dfbbd845ec25b62352f05927dc1980b9958c05e1 /sysdeps/unix/sysv/linux/s390 | |
parent | 241ac38c333ae2539182f214dc641d0956f6ff6d (diff) | |
download | glibc-8a229ee93c17cf5d0aff9ba81a3acfa146f1dae0.tar glibc-8a229ee93c17cf5d0aff9ba81a3acfa146f1dae0.tar.gz glibc-8a229ee93c17cf5d0aff9ba81a3acfa146f1dae0.tar.bz2 glibc-8a229ee93c17cf5d0aff9ba81a3acfa146f1dae0.zip |
nptl: Move pthread_mutexattr_setpshared into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
4 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist index 317e268711..107fbf1daf 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist @@ -1944,6 +1944,7 @@ GLIBC_2.2 pread F GLIBC_2.2 pread64 F GLIBC_2.2 pthread_mutex_timedlock F GLIBC_2.2 pthread_mutexattr_getpshared F +GLIBC_2.2 pthread_mutexattr_setpshared F GLIBC_2.2 putwc F GLIBC_2.2 putwc_unlocked F GLIBC_2.2 putwchar F @@ -2294,6 +2295,7 @@ GLIBC_2.34 pthread_mutexattr_gettype F GLIBC_2.34 pthread_mutexattr_init F GLIBC_2.34 pthread_mutexattr_setprioceiling F GLIBC_2.34 pthread_mutexattr_setprotocol F +GLIBC_2.34 pthread_mutexattr_setpshared F GLIBC_2.34 pthread_once F GLIBC_2.34 pthread_rwlock_rdlock F GLIBC_2.34 pthread_rwlock_unlock F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist index 5a2b0f5dd7..19a2bddebd 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist @@ -72,7 +72,6 @@ GLIBC_2.2 pthread_barrierattr_setpshared F GLIBC_2.2 pthread_condattr_getpshared F GLIBC_2.2 pthread_condattr_setpshared F GLIBC_2.2 pthread_getcpuclockid F -GLIBC_2.2 pthread_mutexattr_setpshared F GLIBC_2.2 pthread_rwlock_timedrdlock F GLIBC_2.2 pthread_rwlock_timedwrlock F GLIBC_2.2 pthread_spin_destroy F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist index 374a8cdb89..f05cd34c87 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist @@ -1321,6 +1321,7 @@ GLIBC_2.2 pthread_mutexattr_getkind_np F GLIBC_2.2 pthread_mutexattr_getpshared F GLIBC_2.2 pthread_mutexattr_gettype F GLIBC_2.2 pthread_mutexattr_init F +GLIBC_2.2 pthread_mutexattr_setpshared F GLIBC_2.2 pthread_once F GLIBC_2.2 pthread_rwlock_rdlock F GLIBC_2.2 pthread_rwlock_unlock F @@ -2187,6 +2188,7 @@ GLIBC_2.34 pthread_mutexattr_gettype F GLIBC_2.34 pthread_mutexattr_init F GLIBC_2.34 pthread_mutexattr_setprioceiling F GLIBC_2.34 pthread_mutexattr_setprotocol F +GLIBC_2.34 pthread_mutexattr_setpshared F GLIBC_2.34 pthread_once F GLIBC_2.34 pthread_rwlock_rdlock F GLIBC_2.34 pthread_rwlock_unlock F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist index a1fb4577b6..a3dcb28513 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist @@ -42,7 +42,6 @@ GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_mutexattr_setkind_np F -GLIBC_2.2 pthread_mutexattr_setpshared F GLIBC_2.2 pthread_mutexattr_settype F GLIBC_2.2 pthread_rwlock_destroy F GLIBC_2.2 pthread_rwlock_init F |