From 8a3853c8121367d055acea2f7fb483095b971bf9 Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Thu, 17 Jul 2014 11:19:04 +0100 Subject: [PATCH] core: increase the exit handler limit Increase the maximum number of exit handlers since some tests now require more that the previous limit. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=81320 Signed-off-by: Thomas Wood --- lib/igt_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_core.c b/lib/igt_core.c index 1015b91d..5faf98ea 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -977,7 +977,7 @@ void igt_waitchildren(void) /* exit handler code */ #define MAX_SIGNALS 32 -#define MAX_EXIT_HANDLERS 5 +#define MAX_EXIT_HANDLERS 10 static struct { sighandler_t handler;