aboutsummaryrefslogtreecommitdiff
path: root/nptl/tst-exec4.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/tst-exec4.c')
-rw-r--r--nptl/tst-exec4.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/nptl/tst-exec4.c b/nptl/tst-exec4.c
index cf59982..2f32389 100644
--- a/nptl/tst-exec4.c
+++ b/nptl/tst-exec4.c
@@ -22,17 +22,13 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-
+#include <support/xsignal.h>
static void *
tf (void *arg)
{
/* Ignore SIGUSR1 and block SIGUSR2. */
- if (sigignore (SIGUSR1) != 0)
- {
- puts ("sigignore failed");
- exit (1);
- }
+ xsignal (SIGUSR1, SIG_IGN);
sigset_t ss;
sigemptyset (&ss);