diff options
author | Timothy Arceri <[email protected]> | 2017-03-05 12:39:49 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 08:53:27 +1100 |
commit | e5375ba028c8ca48b11b86068efb65c4e03153eb (patch) | |
tree | ccf5ae97fa554484a2ae81945f3fb5ca64cdc6a8 /src/gallium/state_trackers/nine | |
parent | 628e84a58fdb26c63a705861b92f65f242613321 (diff) |
gallium/util: replace pipe_thread with thrd_t
pipe_thread was made unnecessary with fd33a6bcd7f12.
V2: fix compile error in u_queue.c
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine')
-rw-r--r-- | src/gallium/state_trackers/nine/nine_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/nine/nine_state.c b/src/gallium/state_trackers/nine/nine_state.c index c3483e4c24f..bfceeeefeac 100644 --- a/src/gallium/state_trackers/nine/nine_state.c +++ b/src/gallium/state_trackers/nine/nine_state.c @@ -60,7 +60,7 @@ struct csmt_instruction { }; struct csmt_context { - pipe_thread worker; + thrd_t worker; struct nine_queue_pool* pool; BOOL terminate; pipe_condvar event_processed; @@ -217,7 +217,7 @@ void nine_csmt_destroy( struct NineDevice9 *device, struct csmt_context *ctx ) { struct csmt_instruction* instr; - pipe_thread render_thread = ctx->worker; + thrd_t render_thread = ctx->worker; DBG("device=%p ctx=%p\n", device, ctx); |