diff options
author | Tao Bao <tbao@google.com> | 2019-03-14 03:33:39 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-03-14 03:33:39 +0100 |
commit | c69f388b3d13e26c9c93893ee9b6e3243259d9d0 (patch) | |
tree | 83ad93d60ddb30295dc321e90abdb2cb7aa4f031 | |
parent | Merge "Update_verifier: Remove the support for legacy text format CareMap" (diff) | |
parent | Merge "update_verifier: Add some missing #include's." am: 05f9a8e100 (diff) | |
download | android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar.gz android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar.bz2 android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar.lz android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar.xz android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.tar.zst android_bootable_recovery-c69f388b3d13e26c9c93893ee9b6e3243259d9d0.zip |
-rw-r--r-- | update_verifier/update_verifier.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp index 28c3fe780..0cf536ce6 100644 --- a/update_verifier/update_verifier.cpp +++ b/update_verifier/update_verifier.cpp @@ -38,17 +38,19 @@ */ #include "update_verifier/update_verifier.h" -#include <android/os/IVold.h> #include <dirent.h> #include <errno.h> #include <fcntl.h> +#include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> #include <algorithm> #include <future> +#include <thread> #include <android-base/file.h> #include <android-base/logging.h> @@ -57,6 +59,7 @@ #include <android-base/strings.h> #include <android-base/unique_fd.h> #include <android/hardware/boot/1.0/IBootControl.h> +#include <android/os/IVold.h> #include <binder/BinderService.h> #include <binder/Status.h> #include <cutils/android_reboot.h> |