blob: bc6610e3b9caed9bd2668e026c0b0d0308d0abed [file] [log] [blame]
Steven Moreland2e87adc2018-08-20 19:47:00 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <android/binder_process.h>
18
19#include <mutex>
20
21#include <android-base/logging.h>
22#include <binder/IPCThreadState.h>
23
24using ::android::IPCThreadState;
25using ::android::ProcessState;
26
27void ABinderProcess_startThreadPool() {
28 ProcessState::self()->startThreadPool();
29 ProcessState::self()->giveThreadPoolName();
30}
31bool ABinderProcess_setThreadPoolMaxThreadCount(uint32_t numThreads) {
32 return ProcessState::self()->setThreadPoolMaxThreadCount(numThreads) == 0;
33}
Devin Moore4354f712022-12-08 01:44:46 +000034bool ABinderProcess_isThreadPoolStarted() {
35 return ProcessState::self()->isThreadPoolStarted();
36}
Steven Moreland2e87adc2018-08-20 19:47:00 -070037void ABinderProcess_joinThreadPool() {
38 IPCThreadState::self()->joinThreadPool();
39}
Steven Moreland23d058f2020-07-24 22:49:51 +000040
41binder_status_t ABinderProcess_setupPolling(int* fd) {
42 return IPCThreadState::self()->setupPolling(fd);
43}
44
45binder_status_t ABinderProcess_handlePolledCommands() {
46 return IPCThreadState::self()->handlePolledCommands();
47}