diff options
author | 2021-10-08 16:26:32 -0700 | |
---|---|---|
committer | 2021-10-08 19:16:48 -0700 | |
commit | 1042306ba3bdaf4fbca2e84bf81f5cbbf2bcab3d (patch) | |
tree | 220cae619e357e56b18fdfbc0e7d78a377957aab /libs/binder/RpcState.cpp | |
parent | a25b01205608f993dfdc5f9589a9eef4f159baa4 (diff) |
binder: RpcSession::*MaxThreads -> *MaxIncomingThreads
We'll add a separate number for outgoing threads
Bug: 194225767
Test: pass
Change-Id: I7bf178c098adc6359582792a2f1ca1248a336b9f
Diffstat (limited to 'libs/binder/RpcState.cpp')
-rw-r--r-- | libs/binder/RpcState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/RpcState.cpp b/libs/binder/RpcState.cpp index ef62f20d9a..9ba64f3407 100644 --- a/libs/binder/RpcState.cpp +++ b/libs/binder/RpcState.cpp @@ -855,7 +855,7 @@ processTransactInternalTailCall: switch (transaction->code) { case RPC_SPECIAL_TRANSACT_GET_MAX_THREADS: { - replyStatus = reply.writeInt32(session->getMaxThreads()); + replyStatus = reply.writeInt32(session->getMaxIncomingThreads()); break; } case RPC_SPECIAL_TRANSACT_GET_SESSION_ID: { |