summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2013-04-26 08:03:33 +0100
committerJosé Fonseca <[email protected]>2014-01-23 12:55:55 +0000
commitfd33a6bcd7f1271e80332379131e82e00fe10586 (patch)
treeefbc6599750e2a89fe86124f077b84807ac5d9f3 /src/gallium/tests
parentecaa81bd9648131e01f9ad4fd9d185370df8e872 (diff)
gallium: Use C11 thread abstractions.
Note that PIPE_ROUTINE now returns an int. Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Chad Versace <[email protected]>
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 f5d72b0abae..bab6acadb80 100644
--- a/src/gallium/tests/unit/pipe_barrier_test.c
+++ b/src/gallium/tests/unit/pipe_barrier_test.c
@@ -57,7 +57,7 @@ static PIPE_THREAD_ROUTINE(thread_function, thread_data)
pipe_barrier_wait(&barrier);
printf("thread %d exiting\n", thread_id);
- return NULL;
+ return 0;
}