From 0f7b9dbe7570d39644d2ec36f43d378c8e320a8e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 24 Feb 2017 10:04:21 +0200 Subject: [PATCH] video-converter: Give a name to the thread-pool threads This way they can be distinguished from any other threads in the same process. --- gst-libs/gst/video/video-converter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/video/video-converter.c b/gst-libs/gst/video/video-converter.c index b9a3bb5..85f4267 100644 --- a/gst-libs/gst/video/video-converter.c +++ b/gst-libs/gst/video/video-converter.c @@ -262,7 +262,7 @@ gst_parallelized_task_runner_new (guint n_threads) /* First thread is the one calling run() */ if (i > 0) { self->threads[i].thread = - g_thread_try_new (NULL, gst_parallelized_task_thread_func, + g_thread_try_new ("videoconvert", gst_parallelized_task_thread_func, &self->threads[i], &err); if (!self->threads[i].thread) goto error; -- 2.7.4