[lldb] Correct vFile:pread/pwrite packet docs
authorDavid Spickett <david.spickett@linaro.org>
Wed, 14 Oct 2020 11:18:05 +0000 (12:18 +0100)
committerDavid Spickett <david.spickett@linaro.org>
Tue, 27 Oct 2020 11:47:35 +0000 (11:47 +0000)
The statement that lldb-server can handle
decimal and hex numbers is misleading.
(it can only handle hex with 0x prefix)

Mentioning non decimal numbers at all
is just creating more confusion for anyone
who tries to use them with lldb-server.

Differential Revision: https://reviews.llvm.org/D89383

lldb/docs/lldb-platform-packets.txt

index e688fc92bb7ef4012bb76c030ae5190f443dfa08..5deb005aabf266dc1636b83cceafcfe49af924a7 100644 (file)
@@ -414,9 +414,8 @@ incompatible with the flags that gdb specifies.
 //
 //  COMPATIBILITY
 //    The gdb-remote serial protocol documentation says that numbers
-//    in "vFile:" packets should be hexidecimal. Instead lldb uses
-//    decimal for the number of bytes and offset.
-//    lldb-server can process either format.
+//    in "vFile:" packets should be hexadecimal. Instead lldb uses
+//    decimal.
 
 
 //----------------------------------------------------------------------
@@ -439,8 +438,8 @@ incompatible with the flags that gdb specifies.
 //
 //  COMPATIBILITY
 //    The gdb-remote serial protocol documentation says that numbers
-//    in "vFile:" packets should be hexidecimal. Instead lldb uses
-//    decimal for the offset. lldb-server can process either format.
+//    in "vFile:" packets should be hexadecimal. Instead lldb uses
+//    decimal.