mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_rosemary
synced 2026-01-27 13:35:09 +00:00
27 lines
780 B
C++
27 lines
780 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2019 The Android Open Source Project
|
||
|
|
* Copyright (C) 2022 StatiX
|
||
|
|
* SPDX-License-Identifer: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "vibrator-impl/Vibrator.h"
|
||
|
|
|
||
|
|
#include <android-base/logging.h>
|
||
|
|
#include <android/binder_manager.h>
|
||
|
|
#include <android/binder_process.h>
|
||
|
|
|
||
|
|
using aidl::android::hardware::vibrator::Vibrator;
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
ABinderProcess_setThreadPoolMaxThreadCount(0);
|
||
|
|
|
||
|
|
// make a default vibrator service
|
||
|
|
auto vib = ndk::SharedRefBase::make<Vibrator>();
|
||
|
|
const std::string vibName = std::string() + Vibrator::descriptor + "/default";
|
||
|
|
binder_status_t status = AServiceManager_addService(vib->asBinder().get(), vibName.c_str());
|
||
|
|
CHECK(status == STATUS_OK);
|
||
|
|
|
||
|
|
ABinderProcess_joinThreadPool();
|
||
|
|
return EXIT_FAILURE; // should not reach
|
||
|
|
}
|