From 661f252f7e3ccb8fe936f2582d234408b8bb4764 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Wed, 11 Sep 2013 15:05:20 +0200 Subject: [PATCH] lib/drmtest: don't frob signals in __igt_fork_helper We shut up the exit handlers already by clearing the array. Signed-off-by: Daniel Vetter --- lib/drmtest.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index f2590d74..0d4aa556 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -992,7 +992,6 @@ bool __igt_fork_helper(struct igt_helper_process *proc) igt_install_exit_handler(fork_helper_exit_handler); - oldsig = signal(SIGQUIT, SIG_DFL); switch (pid = fork()) { case -1: igt_assert(0); @@ -1002,7 +1001,6 @@ bool __igt_fork_helper(struct igt_helper_process *proc) return true; default: - signal(SIGQUIT, oldsig); proc->running = true; proc->pid = pid; proc->id = id;