2015-02-06 Roland McGrath <roland@hack.frob.com>
+ * nptl/tst-cancel25.c (tf2): Test for SIGCANCEL being blocked only if
+ it's defined.
+ * nptl/tst-signal7.c (do_test): Test SIGCANCEL only if it's defined.
+ Test SIGSETXID only if it's defined.
+
* nptl/tst-locale1.c (useless): Use SIGRTMIN only if it's defined.
* rt/tst-timer2.c (do_test): Don't initialize SIGEV.sigev_signo, which
static void *
tf2 (void *arg)
{
+#ifdef SIGCANCEL
sigset_t mask;
if (pthread_sigmask (SIG_SETMASK, NULL, &mask) != 0)
{
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);
{
int result = 0;
+#ifdef SIGCANCEL
errno = 0;
if (sigaction (SIGCANCEL, NULL, NULL) == 0)
{
puts ("sigaction(SIGCANCEL) did not set errno to EINVAL");
result = 1;
}
+#endif
+#ifdef SIGSETXID
errno = 0;
if (sigaction (SIGSETXID, NULL, NULL) == 0)
{
puts ("sigaction(SIGSETXID) did not set errno to EINVAL");
result = 1;
}
+#endif
return result;
}