summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2014-07-17 11:19:04 +0100
committerThomas Wood <thomas.wood@intel.com>2014-07-17 11:25:19 +0100
commit8a3853c8121367d055acea2f7fb483095b971bf9 (patch)
tree53d7608f9bbb9c4b9e99e8d1a20ae38aba83ef92 /lib
parent428060c555526c988f4120718f8a000e59ac8c7b (diff)
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 <thomas.wood@intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/igt_core.c2
1 files changed, 1 insertions, 1 deletions
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;