From: Jason Molenda Date: Tue, 23 Oct 2012 03:05:16 +0000 (+0000) Subject: Clean up help/usage messages for kdp-remote / gdb-remote a little bit. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7dcb337162ad73c9e87e664acd70d61c6fae16f;p=platform%2Fupstream%2Fllvm.git Clean up help/usage messages for kdp-remote / gdb-remote a little bit. llvm-svn: 166464 --- diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 2bf1cc3..ed7e60d 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -517,8 +517,8 @@ CommandInterpreter::LoadCommandDictionary () std::auto_ptr connect_gdb_remote_cmd_ap(new CommandObjectRegexCommand (*this, "gdb-remote", - "Connect to a remote GDB server.", - "gdb-remote [:]\ngdb-remote []", 2)); + "Connect to a remote GDB server. If no hostname is provided, localhost is assumed.", + "gdb-remote [:]", 2)); if (connect_gdb_remote_cmd_ap.get()) { if (connect_gdb_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin gdb-remote connect://%1") && @@ -532,8 +532,8 @@ CommandInterpreter::LoadCommandDictionary () std::auto_ptr connect_kdp_remote_cmd_ap(new CommandObjectRegexCommand (*this, "kdp-remote", - "Connect to a remote KDP server.", - "kdp-remote []\nkdp-remote [:]", 2)); + "Connect to a remote KDP server. udp port 41139 is the default port number.", + "kdp-remote [:]", 2)); if (connect_kdp_remote_cmd_ap.get()) { if (connect_kdp_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin kdp-remote udp://%1") &&