From 6c729b41708749f5261a31719eeedc2d354a6b03 Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Wed, 15 Jul 2015 11:21:38 -0700 Subject: [PATCH] Fix issue #22479881: Nexus 6 randomly rebooting every few hours with... ..."FATAL EXCEPTION IN SYSTEM PROCESS" Synchronous calls out of the system process are bad, m'kay? This should be a safe change because the only place I see calling this interface are within the system process where there is clearly no other dependency on ordering. Change-Id: I483b07cfd68d00d74797784c2a75012e8dd67141 --- .../android/internal/widget/IRemoteViewsAdapterConnection.aidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl b/core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl index 7eb2aef2549fd..7294124b4cdcf 100644 --- a/core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl +++ b/core/java/com/android/internal/widget/IRemoteViewsAdapterConnection.aidl @@ -19,7 +19,7 @@ package com.android.internal.widget; import android.os.IBinder; /** {@hide} */ -interface IRemoteViewsAdapterConnection { +oneway interface IRemoteViewsAdapterConnection { void onServiceConnected(IBinder service); void onServiceDisconnected(); }