summaryrefslogtreecommitdiff
path: root/src/lib/butler.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-16 20:24:37 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-16 20:24:37 +0000
commit8e4a2e5ea578ac4f0f41edb6145d5c0040e33ec2 (patch)
treec31e883dedd7166cf6267ce14a4811c71862c7a7 /src/lib/butler.cc
parent8a1e5f6a6c3ea0147c687fde40110f4ec138fd9b (diff)
Name threads on Linux.
Diffstat (limited to 'src/lib/butler.cc')
-rw-r--r--src/lib/butler.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/butler.cc b/src/lib/butler.cc
index 623a17c2f..81ddb1d44 100644
--- a/src/lib/butler.cc
+++ b/src/lib/butler.cc
@@ -61,6 +61,9 @@ Butler::Butler (shared_ptr<Player> player, shared_ptr<Log> log, AudioMapping aud
_player_video_connection = _player->Video.connect (bind (&Butler::video, this, _1, _2));
_player_audio_connection = _player->Audio.connect (bind (&Butler::audio, this, _1));
_thread = new boost::thread (bind (&Butler::thread, this));
+#ifdef DCPOMATIC_LINUX
+ pthread_setname_np (_thread->native_handle(), "butler");
+#endif
/* Create some threads to do work on the PlayerVideos we are creating; at present this is used to
multi-thread JPEG2000 decoding.