diff options
author | Pavel Labath <labath@google.com> | 2017-10-31 12:27:46 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-10-31 12:27:46 +0000 |
commit | aee3e26c7251a31b65a0e169d06384fe8e708ffe (patch) | |
tree | 0f1e9008c3aeb75902f997e7bf8f6068b136d541 /lldb/source/Plugins/Platform/Android/AdbClient.cpp | |
parent | 89ac0c7d323eb9ac868225a91f46ff213c2bcf3e (diff) | |
download | bcm5719-llvm-aee3e26c7251a31b65a0e169d06384fe8e708ffe.tar.gz bcm5719-llvm-aee3e26c7251a31b65a0e169d06384fe8e708ffe.zip |
Increase AdbClient read timeout
The previous value was not sufficient for Pixel 2 phones. One would have
hoped that the newer phones are faster, but that does not seem to be the
case here.
llvm-svn: 316993
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/AdbClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Platform/Android/AdbClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.cpp b/lldb/source/Plugins/Platform/Android/AdbClient.cpp index d3bcee6f487..6e15eb2b1dc 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.cpp +++ b/lldb/source/Plugins/Platform/Android/AdbClient.cpp @@ -46,7 +46,7 @@ using namespace std::chrono; namespace { -const seconds kReadTimeout(12); +const seconds kReadTimeout(20); const char *kOKAY = "OKAY"; const char *kFAIL = "FAIL"; const char *kDATA = "DATA"; |