summaryrefslogtreecommitdiff
path: root/libs/binder/RpcState.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2022-07-06 21:46:23 +0000
committer Steven Moreland <smoreland@google.com> 2022-07-06 21:47:27 +0000
commite42ffd0f92f3e00132b166559e4a52fd81cbf532 (patch)
tree753ea7fd0b1718c178468773943d630f0789f4e3 /libs/binder/RpcState.cpp
parent37ebee73710cbed9e38a44886f780153f76fe722 (diff)
libbinder: alternative in calling guard error
Bug: 237245600 Test: binderRpcTest Change-Id: I89ad4e2e50ffd66105f9e31c4a274f9bb8abf34b
Diffstat (limited to 'libs/binder/RpcState.cpp')
-rw-r--r--libs/binder/RpcState.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/RpcState.cpp b/libs/binder/RpcState.cpp
index bde3d90d90..0ae75cdefa 100644
--- a/libs/binder/RpcState.cpp
+++ b/libs/binder/RpcState.cpp
@@ -736,7 +736,8 @@ status_t RpcState::processCommand(
IPCThreadState* kernelBinderState = IPCThreadState::selfOrNull();
IPCThreadState::SpGuard spGuard{
.address = __builtin_frame_address(0),
- .context = "processing binder RPC command",
+ .context = "processing binder RPC command (where RpcServer::setPerSessionRootObject is "
+ "used to distinguish callers)",
};
const IPCThreadState::SpGuard* origGuard;
if (kernelBinderState != nullptr) {