From 1a85b030d5ea72308b7535fa13c8aeb5204f6b6f Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 10 Oct 2019 11:08:07 +0200 Subject: [PATCH] main: name video capture thread --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 09feed3bc..e35010764 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -352,6 +352,8 @@ static void usage(const char *exec_path, bool full = false) */ static void *capture_thread(void *arg) { + set_thread_name(__func__); + struct module *uv_mod = (struct module *)arg; struct state_uv *uv = (struct state_uv *) uv_mod->priv_data; struct wait_obj *wait_obj;