NFC: Restrict number of simultaneous RPC threads
VtsHalNfcV1_0TargetReplay test case failure observed during
VTS testing due to multiple invocations of Hal open and close
requests
Changes done to restrict number of simultaneous threads to 1
in RP thread pool in hal service to resolve the issue
Change-Id: Icc1f5ce9de438d16b85a358e3277ec19ded7a27f
diff --git a/1.0/default/service.cpp b/1.0/default/service.cpp
index 795b368..d60ba88 100644
--- a/1.0/default/service.cpp
+++ b/1.0/default/service.cpp
@@ -42,7 +42,7 @@
using android::OK;
int main() {
- configureRpcThreadpool(10, true /*callerWillJoin*/);
+ configureRpcThreadpool(1, true /*callerWillJoin*/);
android::status_t status;
status = registerPassthroughServiceImplementation<INfc>();
LOG_ALWAYS_FATAL_IF(status != OK, "Error while registering nfc AOSP service: %d", status);