diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-18 14:46:45 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-26 13:37:18 -0300 |
commit | 8562794d116af49650f22d763128e47cd9b21db9 (patch) | |
tree | e0c6f44172b1b8445049fb0cfa9b2ee6e793df96 /nptl | |
parent | 4c8cb283ec1993c57c7c1ff3577942b3f13145d0 (diff) | |
download | glibc-8562794d116af49650f22d763128e47cd9b21db9.zip glibc-8562794d116af49650f22d763128e47cd9b21db9.tar.gz glibc-8562794d116af49650f22d763128e47cd9b21db9.tar.bz2 |
nptl: Remove msgsnd from pthread-compat-wrappers
The symbol is not exported by libpthread.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index c5ad855..c159af8 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 = \ - msgrcv msgsnd \ + msgrcv \ sigsuspend \ libpthread-routines = \ @@ -281,7 +281,6 @@ CFLAGS-sem_clockwait.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-lockf.c += -fexceptions CFLAGS-sigwait.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-msgrcv.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-msgsnd.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sigsuspend.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-fdatasync.c += -fexceptions -fasynchronous-unwind-tables |