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/auxiliary/pipebuffer | |
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/auxiliary/pipebuffer')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c index 541a6d9079a..cc42eeae564 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c @@ -246,7 +246,7 @@ pb_slab_buffer_unmap(struct pb_buffer *_buf) --buf->mapCount; if (buf->mapCount == 0) - pipe_condvar_broadcast(buf->event); + cnd_broadcast(&buf->event); } |