summaryrefslogtreecommitdiffstats
path: root/ui.cpp
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2016-12-14 23:07:46 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-12-14 23:07:46 +0100
commitef45a88680ee00fe2283ee68dab884b150dc45ab (patch)
tree6066d58e37b89d85081c1f32ca5b406437b159fa /ui.cpp
parentMerge "updater: Fix the operator order." am: 2bb3a2270e (diff)
parentMerge "Add a stub recovery UI." (diff)
downloadandroid_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.gz
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.bz2
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.lz
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.xz
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.zst
android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.zip
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui.cpp b/ui.cpp
index 78b6e4f1b..2d80c382f 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -80,12 +80,13 @@ static void* InputThreadLoop(void*) {
return nullptr;
}
-void RecoveryUI::Init() {
+bool RecoveryUI::Init() {
ev_init(InputCallback, this);
ev_iterate_available_keys(std::bind(&RecoveryUI::OnKeyDetected, this, std::placeholders::_1));
pthread_create(&input_thread_, nullptr, InputThreadLoop, nullptr);
+ return true;
}
int RecoveryUI::OnInputEvent(int fd, uint32_t epevents) {