summaryrefslogtreecommitdiff
path: root/src/lib/update_checker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/update_checker.cc')
-rw-r--r--src/lib/update_checker.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/update_checker.cc b/src/lib/update_checker.cc
index 8aeca030b..99060016f 100644
--- a/src/lib/update_checker.cc
+++ b/src/lib/update_checker.cc
@@ -75,6 +75,9 @@ void
UpdateChecker::start ()
{
_thread = new boost::thread (boost::bind (&UpdateChecker::thread, this));
+#ifdef DCPOMATIC_LINUX
+ pthread_setname_np (_thread->native_handle(), "update-checker");
+#endif
}
UpdateChecker::~UpdateChecker ()