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/drivers/rbug | |
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/drivers/rbug')
-rw-r--r-- | src/gallium/drivers/rbug/rbug_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/rbug/rbug_core.c b/src/gallium/drivers/rbug/rbug_core.c index b3082da5839..a5d3ee49ce4 100644 --- a/src/gallium/drivers/rbug/rbug_core.c +++ b/src/gallium/drivers/rbug/rbug_core.c @@ -54,7 +54,7 @@ struct rbug_rbug { struct rbug_screen *rb_screen; struct rbug_connection *con; - pipe_thread thread; + thrd_t thread; boolean running; }; |