diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-12 20:57:52 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-18 15:54:39 -0300 |
commit | c29386fd5059e87e63f4c6eaa9feb0aabf7f7f36 (patch) | |
tree | 07469a247b716bbcfd5f1ed1b29f695dd60f76fb /nptl | |
parent | 0c9d4925fe3fbd3624a38434ffb08afe43d8aa85 (diff) | |
download | glibc-c29386fd5059e87e63f4c6eaa9feb0aabf7f7f36.tar.gz glibc-c29386fd5059e87e63f4c6eaa9feb0aabf7f7f36.tar.xz glibc-c29386fd5059e87e63f4c6eaa9feb0aabf7f7f36.zip |
nptl: Remove pause 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 c4aa369e55..61b6249553 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -83,7 +83,7 @@ static-only-routines = pthread_atfork pthread-compat-wrappers = \ send \ lseek lseek64 \ - open open64 pause \ + open open64 \ pread pread64 pwrite pwrite64 \ tcdrain msgrcv msgsnd \ sigwait sigsuspend \ @@ -297,7 +297,6 @@ CFLAGS-msgsnd.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-tcdrain.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-open.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-open64.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-pause.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-send.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-recvmsg.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sendmsg.c += -fexceptions -fasynchronous-unwind-tables diff --git a/nptl/Versions b/nptl/Versions index 253b5c7597..ed087cf41c 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -135,7 +135,6 @@ libpthread { longjmp; lseek; open; - pause; pthread_atfork; pthread_cancel; pthread_cond_broadcast; |