mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-20 18:40:39 +02:00
llvmpipe: wake all threads waiting on a fence
This commit is contained in:
parent
b6e03eafe3
commit
1e926fe42a
1 changed files with 3 additions and 1 deletions
|
|
@ -146,7 +146,9 @@ lp_fence_signal(struct lp_fence *fence)
|
|||
debug_printf("%s count=%u rank=%u\n", __FUNCTION__,
|
||||
fence->count, fence->rank);
|
||||
|
||||
pipe_condvar_signal(fence->signalled);
|
||||
/* Wakeup all threads waiting on the mutex:
|
||||
*/
|
||||
pipe_condvar_broadcast(fence->signalled);
|
||||
|
||||
pipe_mutex_unlock(fence->mutex);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue