summaryrefslogtreecommitdiff
path: root/service/java/com/android/server/bluetooth/BluetoothManagerService.java
diff options
context:
space:
mode:
Diffstat (limited to 'service/java/com/android/server/bluetooth/BluetoothManagerService.java')
-rw-r--r--service/java/com/android/server/bluetooth/BluetoothManagerService.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/service/java/com/android/server/bluetooth/BluetoothManagerService.java b/service/java/com/android/server/bluetooth/BluetoothManagerService.java
index f6201a7b3f..aec5740b09 100644
--- a/service/java/com/android/server/bluetooth/BluetoothManagerService.java
+++ b/service/java/com/android/server/bluetooth/BluetoothManagerService.java
@@ -2609,8 +2609,9 @@ public class BluetoothManagerService extends IBluetoothManager.Stub {
}
// Make sure BT process exit completely
- int[] pids = Process.getPidsForCommands(
- new String[]{ "com.android.bluetooth" });
+ //int[] pids = Process.getPidsForCommands(
+ // new String[]{ "com.android.bluetooth" });
+ int[] pids = null;
if (pids != null && pids.length > 0) {
for(int pid : pids) {
Log.e(TAG, "Killing BT process with PID = " + pid);