mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-05 23:18:47 +00:00
soup: fix thread name
thread names should be below 16char, otherwise they won't be shown on linux. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6738>
This commit is contained in:
parent
974208538f
commit
e6480f6913
1 changed files with 1 additions and 1 deletions
|
@ -1169,7 +1169,7 @@ gst_soup_http_src_session_open (GstSoupHTTPSrc * src)
|
|||
/* now owned by the loop */
|
||||
g_main_context_unref (ctx);
|
||||
|
||||
src->session->thread = g_thread_try_new ("souphttpsrc-thread",
|
||||
src->session->thread = g_thread_try_new ("souphttpsrc",
|
||||
thread_func, src, NULL);
|
||||
|
||||
if (!src->session->thread) {
|
||||
|
|
Loading…
Reference in a new issue