diff options
Diffstat (limited to 'cas/1.0/default/service.cpp')
-rw-r--r-- | cas/1.0/default/service.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cas/1.0/default/service.cpp b/cas/1.0/default/service.cpp index 754c0c5af7..dfb385d2a0 100644 --- a/cas/1.0/default/service.cpp +++ b/cas/1.0/default/service.cpp @@ -27,6 +27,10 @@ #include "MediaCasService.h" +#ifdef ARCH_ARM_32 +#include <hwbinder/ProcessState.h> +#endif + using android::hardware::configureRpcThreadpool; using android::hardware::joinRpcThreadpool; using android::hardware::LazyServiceRegistrar; @@ -40,6 +44,9 @@ const bool kLazyService = false; #endif int main() { + #ifdef ARCH_ARM_32 + android::hardware::ProcessState::initWithMmapSize((size_t)32768); + #endif configureRpcThreadpool(8, true /* callerWillJoin */); // Setup hwbinder service |