summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-26 16:56:44 +0200
committerTao Bao <tbao@google.com>2017-08-26 17:17:36 +0200
commitcff8269e5c364ed48d4f3b81b7f67251ef73a81e (patch)
treea2baf7ee9b9b476c88854d680cddc3a0d22213e6
parentMerge "Add missing report of error code under recovery" (diff)
downloadandroid_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar.gz
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar.bz2
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar.lz
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar.xz
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.tar.zst
android_bootable_recovery-cff8269e5c364ed48d4f3b81b7f67251ef73a81e.zip
-rw-r--r--wear_ui.cpp8
-rw-r--r--wear_ui.h2
2 files changed, 1 insertions, 9 deletions
diff --git a/wear_ui.cpp b/wear_ui.cpp
index 169ef20e1..75d01bdc3 100644
--- a/wear_ui.cpp
+++ b/wear_ui.cpp
@@ -18,6 +18,7 @@
#include <errno.h>
#include <fcntl.h>
+#include <pthread.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
@@ -38,11 +39,6 @@
#include "common.h"
#include "device.h"
-// There's only (at most) one of these objects, and global callbacks
-// (for pthread_create, and the input event system) need to find it,
-// so use a global variable.
-static WearRecoveryUI* self = NULL;
-
// Return the current time as a double (including fractions of a second).
static double now() {
struct timeval tv;
@@ -63,8 +59,6 @@ WearRecoveryUI::WearRecoveryUI()
touch_screen_allowed_ = true;
for (size_t i = 0; i < 5; i++) backgroundIcon[i] = NULL;
-
- self = this;
}
int WearRecoveryUI::GetProgressBaseline() const {
diff --git a/wear_ui.h b/wear_ui.h
index 3bd90b699..d04718ccf 100644
--- a/wear_ui.h
+++ b/wear_ui.h
@@ -68,8 +68,6 @@ class WearRecoveryUI : public ScreenRecoveryUI {
const char* const* menu_headers_;
int menu_start, menu_end;
- pthread_t progress_t;
-
void draw_background_locked() override;
void draw_screen_locked() override;