am 2ec4af59: am 138757db: Merge "Make OBB results a one-way call" into gingerbread

* commit '2ec4af59209ab3a7088a001bbbcb10ef0b846564':
  Make OBB results a one-way call
This commit is contained in:
Kenny Root
2011-01-26 10:11:21 -08:00
committed by Android Git Automerger
2 changed files with 3 additions and 2 deletions

View File

@ -112,7 +112,8 @@ public interface IObbActionListener extends IInterface {
_data.writeString(filename);
_data.writeInt(nonce);
_data.writeInt(status);
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply, 0);
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
Binder.FLAG_ONEWAY);
_reply.readException();
} finally {
_reply.recycle();

View File

@ -79,7 +79,7 @@ class MountService extends IMountService.Stub implements INativeDaemonConnectorC
private static final boolean LOCAL_LOGD = false;
private static final boolean DEBUG_UNMOUNT = false;
private static final boolean DEBUG_EVENTS = false;
private static final boolean DEBUG_OBB = true;
private static final boolean DEBUG_OBB = false;
private static final String TAG = "MountService";