gallium/util: replace pipe_condvar_broadcast() with cnd_broadcast()
[mesa.git] / src / gallium / auxiliary / pipebuffer / pb_bufmgr_slab.c
index 541a6d9079a9420ceb92268135a033acb4d5e11c..cc42eeae564d8a24b5b11d754f4c54a3eb2b5cf1 100644 (file)
@@ -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);
 }