[igt-dev] [PATCH i-g-t 8/9] lib: Drop igt_child_done
Daniel Vetter
daniel.vetter at ffwll.ch
Mon Feb 11 18:02:07 UTC 2019
Added in
commit 054eb1abecd1cce2e4ee0516f3ff8a67a35dca22
Author: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
Date: Thu Mar 30 14:32:29 2017 +0100
benchmarks/gem_wsim: Command submission workload simulator
but since then the only user was lost.
Cc: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
---
lib/igt_core.c | 26 --------------------------
lib/igt_core.h | 1 -
2 files changed, 27 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index f0e186244bc3..0732e9996819 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1742,32 +1742,6 @@ bool __igt_fork(void)
}
-/**
- * igt_child_done:
- *
- * Lets the IGT core know that one of the children has exited.
- */
-void igt_child_done(pid_t pid)
-{
- int i = 0;
- int found = -1;
-
- igt_assert(num_test_children > 1);
-
- for (i = 0; i < num_test_children; i++) {
- if (pid == test_children[i]) {
- found = i;
- break;
- }
- }
-
- igt_assert(found >= 0);
-
- num_test_children--;
- for (i = found; i < num_test_children; i++)
- test_children[i] = test_children[i + 1];
-}
-
int __igt_waitchildren(void)
{
int err = 0;
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 0d02c90beec1..46bc935a428c 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -775,7 +775,6 @@ bool __igt_fork(void);
#define igt_fork(child, num_children) \
for (int child = 0; child < (num_children); child++) \
for (; __igt_fork(); exit(0))
-void igt_child_done(pid_t pid);
int __igt_waitchildren(void);
void igt_waitchildren(void);
void igt_waitchildren_timeout(int seconds, const char *reason);
--
2.20.1
More information about the igt-dev
mailing list