diff options
author | Marek Olšák <[email protected]> | 2018-07-03 14:49:42 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-07-04 22:03:35 -0400 |
commit | 7fab8a4b37a1215c51334242b070b2dcd9a3a80c (patch) | |
tree | 1af7f82103c46273ce61f8cb87caa9e3bc64ec3a /src/gallium/auxiliary/util | |
parent | b238e33bc9d48b814370da4a9e49c431981053cc (diff) |
Shorten u_queue names
There is a 15-character limit for thread names shared by the queue name
and process name. Shorten the thread name to make space for the process
name.
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_threaded_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_threaded_context.c b/src/gallium/auxiliary/util/u_threaded_context.c index 1c647a3efd0..28d0f77ebaa 100644 --- a/src/gallium/auxiliary/util/u_threaded_context.c +++ b/src/gallium/auxiliary/util/u_threaded_context.c @@ -2566,7 +2566,7 @@ threaded_context_create(struct pipe_context *pipe, * from the queue before being executed, so keep one tc_batch slot for that * execution. Also, keep one unused slot for an unflushed batch. */ - if (!util_queue_init(&tc->queue, "gallium_drv", TC_MAX_BATCHES - 2, 1, 0)) + if (!util_queue_init(&tc->queue, "gdrv", TC_MAX_BATCHES - 2, 1, 0)) goto fail; for (unsigned i = 0; i < TC_MAX_BATCHES; i++) { |