From 23a89a63d8c32c34aee3457ad7cd760f800aa39d Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Wed, 9 Mar 2016 14:51:19 -0800 Subject: [PATCH] Set deadlock thread name --- interface/src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 518672916b..34fff1630d 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -243,6 +243,7 @@ public: // Set the heartbeat on launch DeadlockWatchdogThread() { + setObjectName("Deadlock Watchdog"); QTimer* heartbeatTimer = new QTimer(); // Give the heartbeat an initial value _heartbeat = usecTimestampNow();