diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-12 16:42:05 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-18 15:54:39 -0300 |
commit | 643a88a9c1ab023e6b582227b041aaadfabd36aa (patch) | |
tree | 8e2658da527e32a4850e79decc75d839ea93e7ac /nptl | |
parent | 494c3beec9d7ab151879a90586af648372e81be3 (diff) | |
download | glibc-643a88a9c1ab023e6b582227b041aaadfabd36aa.tar glibc-643a88a9c1ab023e6b582227b041aaadfabd36aa.tar.gz glibc-643a88a9c1ab023e6b582227b041aaadfabd36aa.tar.bz2 glibc-643a88a9c1ab023e6b582227b041aaadfabd36aa.zip |
nptl: Remove recvfrom from libpthread
The libc version is identical and built with same flags.
Checked on x86_64-linux-gnu.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Makefile | 3 | ||||
-rw-r--r-- | nptl/Versions | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index be0aae4a79..c8b3e41851 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -81,7 +81,7 @@ static-only-routines = pthread_atfork # We need to provide certain routines for compatibility with existing # binaries. pthread-compat-wrappers = \ - recvfrom send \ + send \ sendto fsync lseek lseek64 \ msync open open64 pause \ pread pread64 pwrite pwrite64 \ @@ -300,7 +300,6 @@ CFLAGS-open64.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-pause.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-send.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sendto.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-recvfrom.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-recvmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sendmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sigsuspend.c += -fexceptions -fasynchronous-unwind-tables diff --git a/nptl/Versions b/nptl/Versions index ebc7a772eb..bfc553db4b 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -169,7 +169,6 @@ libpthread { pthread_sigmask; pthread_testcancel; raise; - recvfrom; recvmsg; sem_destroy; sem_getvalue; |