diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-12 16:13:26 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-18 08:20:43 -0300 |
commit | 173e0ab081b5bb38455785fe19ab4aa3834c1c8a (patch) | |
tree | 416917bb94c94ed1cd5e2d9bbaf24a592b34184c /nptl/Makefile | |
parent | 6cf19111222800a9e98f30392b6649c42b315829 (diff) | |
download | glibc-173e0ab081b5bb38455785fe19ab4aa3834c1c8a.tar glibc-173e0ab081b5bb38455785fe19ab4aa3834c1c8a.tar.gz glibc-173e0ab081b5bb38455785fe19ab4aa3834c1c8a.tar.bz2 glibc-173e0ab081b5bb38455785fe19ab4aa3834c1c8a.zip |
nptl: Remove write from libpthread
The libc version is identical and built with same flags.
Checked on x86_64-linux-gnu.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index b51deff6a3..d692190611 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 = \ - write read close accept \ + read close accept \ connect recv recvfrom send \ sendto fsync lseek lseek64 \ msync open open64 pause \ @@ -309,7 +309,6 @@ CFLAGS-recvmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sendmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-close.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-read.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-write.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sigsuspend.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-msync.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-fdatasync.c += -fexceptions -fasynchronous-unwind-tables |