From cf9e79b90192d1a1ece3264b021d3256a2fffefe Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Wed, 11 May 2016 18:41:25 -0700 Subject: [PATCH] System server: Add Bluetooth to native processes Add Bluetooth service to the interesting native processes to dump during watchdog abort and ANRs. This may help if the process gets wedged and cannot react normally to Java-side ANR dump requests. Bug: 28658141 Change-Id: I788b7c299cc95748fdcddaa2be1d0e2d78f25ef1 --- services/core/java/com/android/server/Watchdog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/services/core/java/com/android/server/Watchdog.java b/services/core/java/com/android/server/Watchdog.java index be53cfc5b0a1f..be021ea48ab80 100644 --- a/services/core/java/com/android/server/Watchdog.java +++ b/services/core/java/com/android/server/Watchdog.java @@ -73,6 +73,7 @@ public class Watchdog extends Thread { "/system/bin/surfaceflinger", "media.codec", // system/bin/mediacodec "media.extractor", // system/bin/mediaextractor + "com.android.bluetooth", // Bluetooth service }; static Watchdog sWatchdog;