From 12bfab3f10ad4c1de6c650e9d1fdecd906683821 Mon Sep 17 00:00:00 2001 From: Johns Date: Fri, 30 Dec 2011 16:47:57 +0100 Subject: Name threads for easier debugging. --- video.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video.c') diff --git a/video.c b/video.c index b7c80c2..f2f1b06 100644 --- a/video.c +++ b/video.c @@ -5709,6 +5709,7 @@ void VideoDisplayHandler(void) pthread_mutex_init(&VideoLockMutex, NULL); pthread_cond_init(&VideoWakeupCond, NULL); pthread_create(&VideoThread, NULL, VideoDisplayHandlerThread, NULL); + pthread_setname_np(VideoThread, "softhddev video"); //pthread_detach(VideoThread); } } -- cgit v1.2.3