Skip to content

Commit 138757d

Browse files
krutonAndroid (Google) Code Review
authored andcommitted
Merge "Make OBB results a one-way call" into gingerbread
2 parents c33acae + b7db272 commit 138757d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core/java/android/os/storage/IObbActionListener.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ public void onObbResult(String filename, int nonce, int status)
112112
_data.writeString(filename);
113113
_data.writeInt(nonce);
114114
_data.writeInt(status);
115-
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply, 0);
115+
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
116+
Binder.FLAG_ONEWAY);
116117
_reply.readException();
117118
} finally {
118119
_reply.recycle();

services/java/com/android/server/MountService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class MountService extends IMountService.Stub
7878
private static final boolean LOCAL_LOGD = false;
7979
private static final boolean DEBUG_UNMOUNT = false;
8080
private static final boolean DEBUG_EVENTS = false;
81-
private static final boolean DEBUG_OBB = true;
81+
private static final boolean DEBUG_OBB = false;
8282

8383
private static final String TAG = "MountService";
8484

0 commit comments

Comments
 (0)