aboutsummaryrefslogtreecommitdiff
path: root/nptl/tst-signal7.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/tst-signal7.c')
-rw-r--r--nptl/tst-signal7.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/nptl/tst-signal7.c b/nptl/tst-signal7.c
index b3889891cc..1fbf3dbf72 100644
--- a/nptl/tst-signal7.c
+++ b/nptl/tst-signal7.c
@@ -27,6 +27,7 @@ do_test (void)
{
int result = 0;
+#ifdef SIGCANCEL
errno = 0;
if (sigaction (SIGCANCEL, NULL, NULL) == 0)
{
@@ -38,7 +39,9 @@ do_test (void)
puts ("sigaction(SIGCANCEL) did not set errno to EINVAL");
result = 1;
}
+#endif
+#ifdef SIGSETXID
errno = 0;
if (sigaction (SIGSETXID, NULL, NULL) == 0)
{
@@ -50,6 +53,7 @@ do_test (void)
puts ("sigaction(SIGSETXID) did not set errno to EINVAL");
result = 1;
}
+#endif
return result;
}