Merge "Bluetooth: Add a second thread for the scheduler"

This commit is contained in:
Treehugger Robot 2017-05-12 18:03:54 +00:00 committed by Gerrit Code Review
commit 2709c56ad5

View file

@ -20,10 +20,13 @@
#include <hidl/LegacySupport.h>
// Add an extra thread for calls to the scheduler service.
static const size_t kMaxThreads = 2;
// Generated HIDL files
using android::hardware::bluetooth::V1_0::IBluetoothHci;
using android::hardware::defaultPassthroughServiceImplementation;
int main() {
return defaultPassthroughServiceImplementation<IBluetoothHci>();
return defaultPassthroughServiceImplementation<IBluetoothHci>(kMaxThreads);
}