summaryrefslogtreecommitdiff
path: root/src/gallium/tests
diff options
context:
space:
mode:
authorTimothy Arceri <tarceri@itsqueeze.com>2017-03-06 11:58:27 +1100
committerTimothy Arceri <tarceri@itsqueeze.com>2017-03-07 09:12:16 +1100
commitd82d8be6148b599ce47bf4c0e6ae4e27cf5cc233 (patch)
tree9eaea02e95bb7ab99c64a9c1b812fdff64ae47c2 /src/gallium/tests
parentda40ac65c7b9f8d877fb6f79b2a29138237ec868 (diff)
gallium/util: replace pipe_thread_wait() with thrd_join()
Replace done using: find ./src -type f -exec sed -i -- \ 's:pipe_thread_wait(\([^)]*\)):thrd_join(\1, NULL):g' {} \; Reviewed-by: Plamena Manolova <plamena.manolova@intel.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/tests')
-rw-r--r--src/gallium/tests/unit/pipe_barrier_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/tests/unit/pipe_barrier_test.c b/src/gallium/tests/unit/pipe_barrier_test.c
index 34a77b8196f..f77f1e1a8ef 100644
--- a/src/gallium/tests/unit/pipe_barrier_test.c
+++ b/src/gallium/tests/unit/pipe_barrier_test.c
@@ -117,7 +117,7 @@ int main(int argc, char *argv[])
}
for (i = 0; i < NUM_THREADS; i++ ) {
- pipe_thread_wait(threads[i]);
+ thrd_join(threads[i], NULL);
}
CHECK(p_atomic_read(&proceeded) == NUM_THREADS);