diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-04-08 23:02:11 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-04-08 23:02:11 +0000 |
commit | e794752bdfb334b64b2d356e9c0444572ad19da1 (patch) | |
tree | 00856ab4aec0df4a292f02d660ea8253b33cc455 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 74ccef1f4f951ac6cd86e28a6dcc7152c5efd52f (diff) | |
download | bcm5719-llvm-e794752bdfb334b64b2d356e9c0444572ad19da1.tar.gz bcm5719-llvm-e794752bdfb334b64b2d356e9c0444572ad19da1.zip |
Experiment with a larger packet timeout.
This is a follow-up to r357829 (https://reviews.llvm.org/D60340) to
see whether increasing the packet timeout for non-asan builds could
also positively affect the stability of non-asan bots.
llvm-svn: 357954
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index e98816c14de..a5efbc01813 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -111,10 +111,10 @@ void DumpProcessGDBRemotePacketHistory(void *p, const char *path) { namespace { static constexpr PropertyDefinition g_properties[] = { - {"packet-timeout", OptionValue::eTypeUInt64, true, 1 + {"packet-timeout", OptionValue::eTypeUInt64, true, 5 #if defined(__has_feature) #if __has_feature(address_sanitizer) - + 4 + * 2 #endif #endif , NULL, {}, |