commit | 9a62391fa187a345a5d1301d4bc0b165c2ea4737 | [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 | 16c33be4f98af807815e59b3817fc8d516f0d3ed | |
parent | ec77122351b4e78c1fe5b60a208f76baf8c67591 [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();