From ca76a2ba1b83ca837a198dc58ef3962d1ca71c68 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Thu, 9 Mar 2017 10:07:43 +1100 Subject: gallium/util: replace pipe_thread_setname() with u_thread_setname() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They do the same thing we just moved the function to be accessible to all of Mesa. Reviewed-by: Marek Olšák --- src/gallium/drivers/llvmpipe/lp_rast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gallium/drivers') diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c index d746778e25f..b25ade3d2ec 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.c +++ b/src/gallium/drivers/llvmpipe/lp_rast.c @@ -791,7 +791,7 @@ thread_function(void *init_data) unsigned fpstate; util_snprintf(thread_name, sizeof thread_name, "llvmpipe-%u", task->thread_index); - pipe_thread_setname(thread_name); + u_thread_setname(thread_name); /* Make sure that denorms are treated like zeros. This is * the behavior required by D3D10. OpenGL doesn't care. -- cgit v1.2.3