[Lldb-commits] [lldb] f8a3b9b - [lldb] Correct vFile:pread/pwrite packet docs

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 27 04:47:42 PDT 2020


Author: David Spickett
Date: 2020-10-27T11:47:35Z
New Revision: f8a3b9b06c4a46fe2a83ec52f8e396d335b44fdd

URL: https://github.com/llvm/llvm-project/commit/f8a3b9b06c4a46fe2a83ec52f8e396d335b44fdd
DIFF: https://github.com/llvm/llvm-project/commit/f8a3b9b06c4a46fe2a83ec52f8e396d335b44fdd.diff

LOG: [lldb] Correct vFile:pread/pwrite packet docs

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/docs/lldb-platform-packets.txt b/lldb/docs/lldb-platform-packets.txt
index e688fc92bb7e..5deb005aabf2 100644
--- a/lldb/docs/lldb-platform-packets.txt
+++ b/lldb/docs/lldb-platform-packets.txt
@@ -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.
 
 
 


        


More information about the lldb-commits mailing list