aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-02-18 19:34:54 -0800
committerScott Jackson <daneren2005@gmail.com>2014-02-18 19:34:54 -0800
commit2a8382f537649405cb0d9618228e9cfe37e219d9 (patch)
tree8f984cdff39837214119b44a255fb4e29d6f9b58 /src
parentf126280ae5da52f80cad05ce327f675854f20672 (diff)
downloaddsub-2a8382f537649405cb0d9618228e9cfe37e219d9.tar.gz
dsub-2a8382f537649405cb0d9618228e9cfe37e219d9.tar.bz2
dsub-2a8382f537649405cb0d9618228e9cfe37e219d9.zip
Add more names to threads
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java2
-rw-r--r--src/github/daneren2005/dsub/view/UpdateView.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
index 1e123ef3..0194de82 100644
--- a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
+++ b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
@@ -134,7 +134,7 @@ public class DownloadServiceLifecycleSupport {
Looper.loop();
}
- }).start();
+ }, "DownloadServiceLifecycleSupport").start();
// Pause when headset is unplugged.
headsetEventReceiver = new BroadcastReceiver() {
diff --git a/src/github/daneren2005/dsub/view/UpdateView.java b/src/github/daneren2005/dsub/view/UpdateView.java
index 948e9fd1..f59cee3f 100644
--- a/src/github/daneren2005/dsub/view/UpdateView.java
+++ b/src/github/daneren2005/dsub/view/UpdateView.java
@@ -120,7 +120,7 @@ public class UpdateView extends LinearLayout {
uiHandler.post(updateRunnable);
Looper.loop();
}
- }).start();
+ }, "UpdateView").start();
}
private static void updateAll() {