diff options
author | Timothy Arceri <[email protected]> | 2017-03-06 10:41:39 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 09:07:33 +1100 |
commit | e92293a601bbc141bb85f88f962264fa0b1da916 (patch) | |
tree | 6a1be68109f4098b9755c0ad3b08cecd83562b7e /src/gallium/auxiliary/pipebuffer | |
parent | e5375ba028c8ca48b11b86068efb65c4e03153eb (diff) |
gallium/util: replace pipe_condvar with cnd_t
pipe_condvar was made unnecessary with fd33a6bcd7f12.
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 a89236ed7c1..96c0683a1bd 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c @@ -71,7 +71,7 @@ struct pb_slab_buffer /** Use when validating, to signal that all mappings are finished */ /* TODO: Actually validation does not reach this stage yet */ - pipe_condvar event; + cnd_t event; }; |