diff options
author | Timothy Arceri <[email protected]> | 2017-03-05 12:39:49 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 08:53:27 +1100 |
commit | e5375ba028c8ca48b11b86068efb65c4e03153eb (patch) | |
tree | ccf5ae97fa554484a2ae81945f3fb5ca64cdc6a8 /src/gallium/tests | |
parent | 628e84a58fdb26c63a705861b92f65f242613321 (diff) |
gallium/util: replace pipe_thread with thrd_t
pipe_thread was made unnecessary with fd33a6bcd7f12.
V2: fix compile error in u_queue.c
Reviewed-by: Marek Olšák <[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 bb7989a79fd..d5d7fb747af 100644 --- a/src/gallium/tests/unit/pipe_barrier_test.c +++ b/src/gallium/tests/unit/pipe_barrier_test.c @@ -46,7 +46,7 @@ static int verbosity = 0; -static pipe_thread threads[NUM_THREADS]; +static thrd_t threads[NUM_THREADS]; static pipe_barrier barrier; static int thread_ids[NUM_THREADS]; |