diff options
| author | Greg Clayton <gclayton@apple.com> | 2013-02-14 18:39:30 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2013-02-14 18:39:30 +0000 |
| commit | eee5e98658938e0902982d768069784f5c19e246 (patch) | |
| tree | 17643ad7234ede2b9e0ff8ef015f017de8bef190 /lldb/source/Plugins/Process | |
| parent | 495b1a43c185edcd247894d6238ee21593c940fb (diff) | |
| download | bcm5719-llvm-eee5e98658938e0902982d768069784f5c19e246.tar.gz bcm5719-llvm-eee5e98658938e0902982d768069784f5c19e246.zip | |
<rdar://problem/12693921>
Rename the monitor command from "qCmd" (incorrect) to "qRcmd".
llvm-svn: 175191
Diffstat (limited to 'lldb/source/Plugins/Process')
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 5ac3e032579..96662f61d24 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -3157,8 +3157,8 @@ public: CommandObjectProcessGDBRemotePacketMonitor(CommandInterpreter &interpreter) : CommandObjectRaw (interpreter, "process plugin packet monitor", - "Send a qCmd packet through the GDB remote protocol and print the response." - "The argument passed to this command will be hex encoded into a valid 'qCmd' packet, sent and the response will be printed.", + "Send a qRcmd packet through the GDB remote protocol and print the response." + "The argument passed to this command will be hex encoded into a valid 'qRcmd' packet, sent and the response will be printed.", NULL) { } @@ -3181,7 +3181,7 @@ public: if (process) { StreamString packet; - packet.PutCString("qCmd,"); + packet.PutCString("qRcmd,"); packet.PutBytesAsRawHex8(command, strlen(command)); const char *packet_cstr = packet.GetString().c_str(); |

