diff options
author | Timothy Arceri <[email protected]> | 2017-03-05 10:41:33 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 08:23:26 +1100 |
commit | 464d4806c112c6d224a55b328cde327a025acd91 (patch) | |
tree | bbc1b555904fe529945f22940e2e3d5e10b94c2e /src/gallium/drivers/llvmpipe/lp_fence.c | |
parent | 5e56c2c79d6d7e59d9098b79912149b00973251d (diff) |
gallium/util: replace pipe_condvar_broadcast() with cnd_broadcast()
pipe_condvar_broadcast() was made unnecessary with fd33a6bcd7f12.
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_fence.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_fence.c b/src/gallium/drivers/llvmpipe/lp_fence.c index 1a8e365f004..115589f8705 100644 --- a/src/gallium/drivers/llvmpipe/lp_fence.c +++ b/src/gallium/drivers/llvmpipe/lp_fence.c @@ -99,7 +99,7 @@ lp_fence_signal(struct lp_fence *fence) /* Wakeup all threads waiting on the mutex: */ - pipe_condvar_broadcast(fence->signalled); + cnd_broadcast(&fence->signalled); pipe_mutex_unlock(fence->mutex); } |