diff options
| author | Pavel Labath <labath@google.com> | 2016-05-05 11:25:57 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2016-05-05 11:25:57 +0000 |
| commit | 0360c0f63d9fd9f3a7cd24062cc180118a0bd5ae (patch) | |
| tree | dc18242cb22c5be59416e9dc7d6f7b3e3b2514b7 /lldb/source/Plugins/Platform/Android | |
| parent | 2ff833060cb31bda76dc62137d2ff486c7c6fba7 (diff) | |
| download | bcm5719-llvm-0360c0f63d9fd9f3a7cd24062cc180118a0bd5ae.tar.gz bcm5719-llvm-0360c0f63d9fd9f3a7cd24062cc180118a0bd5ae.zip | |
Bump up timeout in AdbClient
now that the timeout actually means something, we see that sometimes adb is just really slow in
replying to the DONE packet during file push. Give it more time to complete.
llvm-svn: 268623
Diffstat (limited to 'lldb/source/Plugins/Platform/Android')
| -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 73eefebfdba..ce15bcdf477 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.cpp +++ b/lldb/source/Plugins/Platform/Android/AdbClient.cpp @@ -34,7 +34,7 @@ using namespace lldb_private::platform_android; namespace { -const std::chrono::seconds kReadTimeout(4); +const std::chrono::seconds kReadTimeout(6); const char * kOKAY = "OKAY"; const char * kFAIL = "FAIL"; const char * kDATA = "DATA"; |

