[Lldb-commits] [lldb] r349313 - Clarify a few minor details.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Sun Dec 16 10:33:58 PST 2018


Author: jmolenda
Date: Sun Dec 16 10:33:58 2018
New Revision: 349313

URL: http://llvm.org/viewvc/llvm-project?rev=349313&view=rev
Log:
Clarify a few minor details.

Modified:
    lldb/trunk/docs/lldb-platform-packets.txt

Modified: lldb/trunk/docs/lldb-platform-packets.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/lldb-platform-packets.txt?rev=349313&r1=349312&r2=349313&view=diff
==============================================================================
--- lldb/trunk/docs/lldb-platform-packets.txt (original)
+++ lldb/trunk/docs/lldb-platform-packets.txt Sun Dec 16 10:33:58 2018
@@ -100,7 +100,7 @@ for the lldb testsuite to be run on a re
 //  request packet has the fields:
 //     1. shell command ascii-hex encoded
 //     2. timeout 
-//     3. {optional} working directory
+//     3. {optional} working directory ascii-hex encoded
 //
 //  Response is F followed by the return value of the command (base 16),
 //  followed by a another number, followed by the output of the command
@@ -118,8 +118,8 @@ for the lldb testsuite to be run on a re
 //  receive: qLaunchGDBServer;host:<HOSTNAME_LLDB_IS_ON>;
 //  send:    pid:1337;port:43001;
 //
-//  request packet hostname field is not ascii-hex encoded.  Hopefully
-//  hostnames don't have $ or # characters in them.
+//  request packet hostname field is not ascii-hex encoded. Hostnames 
+//  don't have $ or # characters in them.
 //
 //  response to the packet is the pid of the newly launched gdbserver,
 //  and the port it is listening for a connection on.
@@ -272,7 +272,8 @@ for the lldb testsuite to be run on a re
 //  ascii-hex encoding.
 //  Response is "F" plus the return value of chmod(), base 10 encoding.
 //
-//  I don't know why there are two packets for the same thing.
+//  I don't know why there are two packets for the same thing, v.
+//  vFile:chmod:.
 
 //----------------------------------------------------------------------
 // vFile:chmod:
@@ -343,8 +344,8 @@ for the lldb testsuite to be run on a re
 //     2. number of bytes to be read, base 10
 //     3. offset into file to start from, base 10
 //
-//  Response is F, followed by the numbe rof bytes read (base 10), followed
-//  by the data in the binary-escaped-data scheme.
+//  Response is F, followed by the number of bytes read (base 10), a
+//  semicolon, followed by the data in the binary-escaped-data encoding.
 
 
 //----------------------------------------------------------------------
@@ -363,7 +364,7 @@ for the lldb testsuite to be run on a re
 //     2. offset into file to start from, base 10
 //     3. binary-escaped-data to be written
 //
-//  Response is F, followed by the numbe rof bytes written (base 10)
+//  Response is F, followed by the number of bytes written (base 10)
 
 
 




More information about the lldb-commits mailing list