commit | 8d480b86ec00396b37a22803fdfe5f7bef3d8e05 | [log] [tgz] |
---|---|---|
author | Glenn Kasten <gkasten@google.com> | Thu Apr 11 17:21:41 2013 -0700 |
committer | Glenn Kasten <gkasten@google.com> | Thu Apr 11 17:23:19 2013 -0700 |
tree | ee0beafe699756cbc41a9c7592e25670bb0636d8 | |
parent | 5544c66ba0aa789a997b376df503a5ffae425dc7 [diff] [blame] |
Workaround: requestPriority() is one-way Bug: 8565696 Change-Id: If5fcdf8593e1ca15bea45217bd683b43a2a106c7
diff --git a/services/audioflinger/ISchedulingPolicyService.cpp b/services/audioflinger/ISchedulingPolicyService.cpp index 909b77e..218aa6b 100644 --- a/services/audioflinger/ISchedulingPolicyService.cpp +++ b/services/audioflinger/ISchedulingPolicyService.cpp
@@ -44,7 +44,7 @@ data.writeInt32(pid); data.writeInt32(tid); data.writeInt32(prio); - remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply); + remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); // fail on exception if (reply.readExceptionCode() != 0) return -1; return reply.readInt32();