diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:15:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:19:47 +0200 |
commit | 793042c63c511f5280e960108b2f0b13e115245d (patch) | |
tree | 5c2afbb5a1afd55877a90aba20dd12538af4397d /sysdeps/unix/sysv/linux/s390 | |
parent | 1ae60ae74ff43cf7a28bace42d91cb6281bd50fc (diff) | |
download | glibc-793042c63c511f5280e960108b2f0b13e115245d.tar glibc-793042c63c511f5280e960108b2f0b13e115245d.tar.gz glibc-793042c63c511f5280e960108b2f0b13e115245d.tar.bz2 glibc-793042c63c511f5280e960108b2f0b13e115245d.zip |
nptl: Move sem_post into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
4 files changed, 5 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist index d9cdbb5bd3..96ebea4162 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist @@ -989,6 +989,7 @@ GLIBC_2.0 select F GLIBC_2.0 sem_destroy F GLIBC_2.0 sem_getvalue F GLIBC_2.0 sem_init F +GLIBC_2.0 sem_post F GLIBC_2.0 semctl F GLIBC_2.0 semget F GLIBC_2.0 semop F @@ -1603,6 +1604,7 @@ GLIBC_2.1 scandir64 F GLIBC_2.1 sem_destroy F GLIBC_2.1 sem_getvalue F GLIBC_2.1 sem_init F +GLIBC_2.1 sem_post F GLIBC_2.1 sendfile F GLIBC_2.1 setrlimit64 F GLIBC_2.1 setutxent F @@ -2400,6 +2402,7 @@ GLIBC_2.34 sem_destroy F GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F +GLIBC_2.34 sem_post F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist index 6ed45aa436..966ce977a8 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist @@ -9,7 +9,6 @@ GLIBC_2.0 pthread_cancel F GLIBC_2.0 pthread_create F GLIBC_2.0 pthread_detach F GLIBC_2.0 pthread_join F -GLIBC_2.0 sem_post F GLIBC_2.0 sem_trywait F GLIBC_2.0 sem_wait F GLIBC_2.1 pthread_attr_getguardsize F @@ -21,7 +20,6 @@ GLIBC_2.1 pthread_attr_setstacksize F GLIBC_2.1 pthread_create F GLIBC_2.1 pthread_getconcurrency F GLIBC_2.1 pthread_setconcurrency F -GLIBC_2.1 sem_post F GLIBC_2.1 sem_trywait F GLIBC_2.1 sem_wait F GLIBC_2.1.1 sem_unlink F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist index e7045e3a37..ecfa9e8153 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist @@ -1475,6 +1475,7 @@ GLIBC_2.2 sem_destroy F GLIBC_2.2 sem_getvalue F GLIBC_2.2 sem_init F GLIBC_2.2 sem_open F +GLIBC_2.2 sem_post F GLIBC_2.2 semctl F GLIBC_2.2 semget F GLIBC_2.2 semop F @@ -2290,6 +2291,7 @@ GLIBC_2.34 sem_destroy F GLIBC_2.34 sem_getvalue F GLIBC_2.34 sem_init F GLIBC_2.34 sem_open F +GLIBC_2.34 sem_post F GLIBC_2.34 thrd_exit F GLIBC_2.34 tss_create F GLIBC_2.34 tss_delete F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist index 162c5743a9..8ecf3125a6 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist @@ -32,7 +32,6 @@ GLIBC_2.2 pthread_getconcurrency F GLIBC_2.2 pthread_getcpuclockid F GLIBC_2.2 pthread_join F GLIBC_2.2 pthread_setconcurrency F -GLIBC_2.2 sem_post F GLIBC_2.2 sem_timedwait F GLIBC_2.2 sem_trywait F GLIBC_2.2 sem_unlink F |