about summary refs log tree commit diff
path: root/sysdeps/ia64
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-03-13 19:10:08 +0000
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-04-21 14:01:58 -0300
commit34d49f120df2787788acfdf86769277a1a7ebccb (patch)
tree860541c9c962b2db55cb4670a7c5839a230a6b89 /sysdeps/ia64
parentc6663fee4340291cd825fd8a88c219621f4eca9d (diff)
downloadglibc-34d49f120df2787788acfdf86769277a1a7ebccb.tar.gz
glibc-34d49f120df2787788acfdf86769277a1a7ebccb.tar.xz
glibc-34d49f120df2787788acfdf86769277a1a7ebccb.zip
ia64: Remove sigprocmask/sigblock objects from libpthread
It is required because __libc_unwind_longjmp (used on thread
cancellation) calls __sigprocmask.  Replace with a direct call.

They are required because __libc_unwind_longjmp (used for thread
cancellation) calls __sigprocmask.  Replace this with a direct call.

The sigblock function is not exported and is not used internally, so
it can be removed.

Checked on cross build for ia64-linux-gnu.
Diffstat (limited to 'sysdeps/ia64')
-rw-r--r--sysdeps/ia64/nptl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ia64/nptl/Makefile b/sysdeps/ia64/nptl/Makefile
index b7d87c37c8..d34cb27699 100644
--- a/sysdeps/ia64/nptl/Makefile
+++ b/sysdeps/ia64/nptl/Makefile
@@ -20,6 +20,6 @@ gen-as-const-headers += tcb-offsets.sym
 endif
 
 ifeq ($(subdir),nptl)
-libpthread-routines += sysdep sigblock sigprocmask
-libpthread-shared-only-routines += sysdep sigblock sigprocmask
+libpthread-routines += sysdep
+libpthread-shared-only-routines += sysdep
 endif