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/os/os_thread.h | |
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/os/os_thread.h')
-rw-r--r-- | src/gallium/auxiliary/os/os_thread.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index ad2cda431d1..b15dd053c3d 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -121,10 +121,6 @@ __pipe_mutex_assert_locked(mtx_t *mutex) #endif } -/* pipe_condvar - */ -typedef cnd_t pipe_condvar; - /* * pipe_barrier @@ -157,7 +153,7 @@ typedef struct { unsigned waiters; uint64_t sequence; mtx_t mutex; - pipe_condvar condvar; + cnd_t condvar; } pipe_barrier; static inline void pipe_barrier_init(pipe_barrier *barrier, unsigned count) @@ -209,7 +205,7 @@ static inline void pipe_barrier_wait(pipe_barrier *barrier) typedef struct { mtx_t mutex; - pipe_condvar cond; + cnd_t cond; int counter; } pipe_semaphore; |