forked from OSchip/llvm-project
[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
This commit is contained in:
parent
0ac56e8eaa
commit
f8a3b9b06c
|
@ -414,9 +414,8 @@ incompatible with the flags that gdb specifies.
|
||||||
//
|
//
|
||||||
// COMPATIBILITY
|
// COMPATIBILITY
|
||||||
// The gdb-remote serial protocol documentation says that numbers
|
// The gdb-remote serial protocol documentation says that numbers
|
||||||
// in "vFile:" packets should be hexidecimal. Instead lldb uses
|
// in "vFile:" packets should be hexadecimal. Instead lldb uses
|
||||||
// decimal for the number of bytes and offset.
|
// decimal.
|
||||||
// lldb-server can process either format.
|
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
|
@ -439,8 +438,8 @@ incompatible with the flags that gdb specifies.
|
||||||
//
|
//
|
||||||
// COMPATIBILITY
|
// COMPATIBILITY
|
||||||
// The gdb-remote serial protocol documentation says that numbers
|
// The gdb-remote serial protocol documentation says that numbers
|
||||||
// in "vFile:" packets should be hexidecimal. Instead lldb uses
|
// in "vFile:" packets should be hexadecimal. Instead lldb uses
|
||||||
// decimal for the offset. lldb-server can process either format.
|
// decimal.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue