diff options
author | Timothy Arceri <[email protected]> | 2017-03-05 10:41:30 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 08:23:26 +1100 |
commit | 1e0314281a7d2e57b0e0ad2296445dffdb26dbd2 (patch) | |
tree | 0e1a168ebef856a103768e8ebcb101f7631ad998 /src/gallium/auxiliary/os | |
parent | 3f58242863e03c47e3b37a63c84a965d12047612 (diff) |
gallium/util: replace pipe_condvar_destroy() with cnd_destroy()
pipe_condvar_destroy() was made unnecessary with fd33a6bcd7f12.
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r-- | src/gallium/auxiliary/os/os_thread.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index e1dc210a6e3..e230d06149e 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -148,9 +148,6 @@ __pipe_mutex_assert_locked(pipe_mutex *mutex) */ typedef cnd_t pipe_condvar; -#define pipe_condvar_destroy(cond) \ - cnd_destroy(&(cond)) - #define pipe_condvar_wait(cond, mutex) \ cnd_wait(&(cond), &(mutex)) @@ -208,7 +205,7 @@ static inline void pipe_barrier_destroy(pipe_barrier *barrier) { assert(barrier->waiters == 0); pipe_mutex_destroy(barrier->mutex); - pipe_condvar_destroy(barrier->condvar); + cnd_destroy(&barrier->condvar); } static inline void pipe_barrier_wait(pipe_barrier *barrier) @@ -261,7 +258,7 @@ static inline void pipe_semaphore_destroy(pipe_semaphore *sema) { pipe_mutex_destroy(sema->mutex); - pipe_condvar_destroy(sema->cond); + cnd_destroy(&sema->cond); } /** Signal/increment semaphore counter */ |