summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/rbug
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-03-06 11:58:27 +1100
committerTimothy Arceri <[email protected]>2017-03-07 09:12:16 +1100
commitd82d8be6148b599ce47bf4c0e6ae4e27cf5cc233 (patch)
tree9eaea02e95bb7ab99c64a9c1b812fdff64ae47c2 /src/gallium/drivers/rbug
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 <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/rbug')
-rw-r--r--src/gallium/drivers/rbug/rbug_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/rbug/rbug_core.c b/src/gallium/drivers/rbug/rbug_core.c
index 5752e5e739c..d09c4b51960 100644
--- a/src/gallium/drivers/rbug/rbug_core.c
+++ b/src/gallium/drivers/rbug/rbug_core.c
@@ -869,7 +869,7 @@ rbug_stop(struct rbug_rbug *tr_rbug)
return;
tr_rbug->running = false;
- pipe_thread_wait(tr_rbug->thread);
+ thrd_join(tr_rbug->thread, NULL);
FREE(tr_rbug);