From e4b3707cea0eae2cf46a82534dd9279541e7415a Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 18 Oct 2019 14:29:04 +0200 Subject: nptl: SIGCANCEL, SIGTIMER, SIGSETXID are always defined All nptl targets have these signal definitions nowadays. This changes also replaces the nptl-generic version of pthread_sigmask with the Linux version. Tested on x86_64-linux-gnu and i686-linux-gnu. Built with build-many-glibcs.py. Reviewed-by: Carlos O'Donell --- nptl/tst-cancel25.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'nptl/tst-cancel25.c') diff --git a/nptl/tst-cancel25.c b/nptl/tst-cancel25.c index 24ddd3c01c..c6e1c23c02 100644 --- a/nptl/tst-cancel25.c +++ b/nptl/tst-cancel25.c @@ -12,7 +12,6 @@ static pthread_t th2; static void * tf2 (void *arg) { -#ifdef SIGCANCEL sigset_t mask; if (pthread_sigmask (SIG_SETMASK, NULL, &mask) != 0) { @@ -24,7 +23,6 @@ tf2 (void *arg) puts ("SIGCANCEL blocked in new thread"); exit (1); } -#endif /* Sync with the main thread so that we do not test anything else. */ int e = pthread_barrier_wait (&b); -- cgit v1.2.3