summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2018-04-25 22:00:53 -0700
committerAndreas Gampe <agampe@google.com>2018-05-03 13:32:44 -0700
commit9ecd8d334edcd05bc2f18842f167e02936c2487d (patch)
tree2d0c1ebd8b66d7fce42b6397c6997dd55782c287
parent590c86a492311d5c0d0efd49aa40c6388f03c4f9 (diff)
downloadextras-9ecd8d334edcd05bc2f18842f167e02936c2487d.tar.gz
Perfprofd: Fix binder interface
Actually forward to the right onTransact. (cherry picked from commit 109780d575f0776fca092b5a238a0bff21e3ece1) Bug: 73175642 Test: perfprofd_test Test: manual Merged-In: I896cfe8cf166c00bc49f4be5de8b19f913baad2d Change-Id: I896cfe8cf166c00bc49f4be5de8b19f913baad2d
-rw-r--r--perfprofd/binder_interface/perfprofd_binder.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/perfprofd/binder_interface/perfprofd_binder.cc b/perfprofd/binder_interface/perfprofd_binder.cc
index cbb3fcef..e3f66eab 100644
--- a/perfprofd/binder_interface/perfprofd_binder.cc
+++ b/perfprofd/binder_interface/perfprofd_binder.cc
@@ -337,7 +337,8 @@ status_t PerfProfdNativeService::onTransact(uint32_t _aidl_code,
}
default:
- return BBinder::onTransact(_aidl_code, _aidl_data, _aidl_reply, _aidl_flags);
+ return ::android::os::BnPerfProfd::onTransact(
+ _aidl_code, _aidl_data, _aidl_reply, _aidl_flags);
}
}