diff options
author | José Fonseca <[email protected]> | 2013-04-26 08:03:33 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2014-01-23 12:55:55 +0000 |
commit | fd33a6bcd7f1271e80332379131e82e00fe10586 (patch) | |
tree | efbc6599750e2a89fe86124f077b84807ac5d9f3 /src/gallium/tests | |
parent | ecaa81bd9648131e01f9ad4fd9d185370df8e872 (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.c | 2 |
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; } |