From b34322fd15488eed8b7b20538cb1d50f43b4b132 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Tue, 3 Dec 2013 17:57:06 +0100 Subject: Revert "test/gem_concurrent_blt" This reverts commit aee0dcb1ec2075991d310dd6f3fb5e50160847d1. Oops, accidentally commit a bit of wip changes. --- lib/drmtest.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/drmtest.c b/lib/drmtest.c index 6f5b06c3..765dadce 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1129,6 +1129,7 @@ static void fork_helper_exit_handler(int sig) bool __igt_fork_helper(struct igt_helper_process *proc) { pid_t pid; + sighandler_t oldsig; int id; assert(!proc->running); @@ -1145,6 +1146,7 @@ bool __igt_fork_helper(struct igt_helper_process *proc) * that inserting sufficient amounts of printf or other delays makes * this unnecessary. */ + oldsig = signal(SIGQUIT, SIG_DFL); switch (pid = fork()) { case -1: igt_assert(0); @@ -1155,6 +1157,8 @@ bool __igt_fork_helper(struct igt_helper_process *proc) return true; default: + signal(SIGQUIT, oldsig); + proc->running = true; proc->pid = pid; proc->id = id; -- cgit v1.2.3