diff options
author | Greg Clayton <gclayton@apple.com> | 2013-07-15 22:54:20 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-07-15 22:54:20 +0000 |
commit | 7f98240df65cfabd6d4bbf95907711f6a2734298 (patch) | |
tree | da16a1bed64b0e9ea58667b300a3ee4907e69b4f /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | 1c1d6c166627733e880546387bca5070d8aaa993 (diff) | |
download | bcm5719-llvm-7f98240df65cfabd6d4bbf95907711f6a2734298.tar.gz bcm5719-llvm-7f98240df65cfabd6d4bbf95907711f6a2734298.zip |
<rdar://problem/13793059>
Added a setting to control timeout for kdp response packets. While I was at it, I also added a way to control the response timeout for gdb-remote packets.
KDP defaults to 5 seconds, and GDB defaults to 1 second. These were the default values that were in the code prior to adding these settings.
(lldb) settings set plugin.process.gdb-remote.packet-timeout 10
(lldb) settings set plugin.process.kdp-remote.packet-timeout 10
llvm-svn: 186360
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index ab8fef3f295..e104b7191ea 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -49,6 +49,9 @@ public: Initialize(); static void + DebuggerInitialize (lldb_private::Debugger &debugger); + + static void Terminate(); static lldb_private::ConstString |