summaryrefslogtreecommitdiff
path: root/lib/drmtest.h
diff options
context:
space:
mode:
authorJeff McGee <jeff.mcgee@intel.com>2014-01-28 18:25:04 -0600
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-02-06 07:45:53 +0100
commitfd3fcbd3b3f12f878737d331d361de7eda0f579a (patch)
tree0b216a511ebab4128dcaf669cb198b14b787a527 /lib/drmtest.h
parent3bada1626cd35800533361296f4340f64b91321c (diff)
lib/drmtest: Add igt_wait_helper
igt_wait_helper compliments igt_stop_helper and is used when helper processes are expected to exit naturally. Signed-off-by: Jeff McGee <jeff.mcgee@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'lib/drmtest.h')
-rw-r--r--lib/drmtest.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/drmtest.h b/lib/drmtest.h
index d42a6f77..f945a7eb 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -290,6 +290,7 @@ struct igt_helper_process {
};
bool __igt_fork_helper(struct igt_helper_process *proc);
void igt_stop_helper(struct igt_helper_process *proc);
+void igt_wait_helper(struct igt_helper_process *proc);
#define igt_fork_helper(proc) \
for (; __igt_fork_helper(proc); exit(0))