From 1042306ba3bdaf4fbca2e84bf81f5cbbf2bcab3d Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Fri, 8 Oct 2021 16:26:32 -0700 Subject: binder: RpcSession::*MaxThreads -> *MaxIncomingThreads We'll add a separate number for outgoing threads Bug: 194225767 Test: pass Change-Id: I7bf178c098adc6359582792a2f1ca1248a336b9f --- libs/binder/RpcState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/binder/RpcState.cpp') 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: { -- cgit v1.2.3-59-g8ed1b