[Lldb-commits] [lldb] r193426 - Update the key/value documentation for the qHostInfo packet.

Greg Clayton gclayton at apple.com
Fri Oct 25 11:22:25 PDT 2013


Author: gclayton
Date: Fri Oct 25 13:22:24 2013
New Revision: 193426

URL: http://llvm.org/viewvc/llvm-project?rev=193426&view=rev
Log:
Update the key/value documentation for the qHostInfo packet.


Modified:
    lldb/trunk/docs/lldb-gdb-remote.txt

Modified: lldb/trunk/docs/lldb-gdb-remote.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/lldb-gdb-remote.txt?rev=193426&r1=193425&r2=193426&view=diff
==============================================================================
--- lldb/trunk/docs/lldb-gdb-remote.txt (original)
+++ lldb/trunk/docs/lldb-gdb-remote.txt Fri Oct 25 13:22:24 2013
@@ -525,10 +525,17 @@ Key value pairs are one of:
 
 cputype: is a number that is the mach-o CPU type that is being debugged
 cpusubtype: is a number that is the mach-o CPU subtype type that is being debugged
-ostype: is a string the represents the OS being debugged (darwin, linux, freebsd)
-vendor: is a string that represents the vendor (apple)
+triple: a string for the target triple (x86_64-apple-macosx) that can be used to specify arch + vendor + os in one entry
+vendor: a string for the vendor (apple), not needed if "triple" is specified
+ostype: a string for the OS being debugged (darwin, linux, freebsd), not needed if "triple" is specified
 endian: is one of "little", "big", or "pdp"
-ptrsize: is a number that represents how big pointers are in bytes on the debug target
+ptrsize: an unsigned number that represents how big pointers are in bytes on the debug target
+hostname: the hostname of the host that is running the GDB server if available
+os_build: a string for the the OS build for the remote host as a string value
+os_kernel: a string describing the kernel version
+os_version: a version string that represents the current OS version (10.8.2)
+watchpoint_exceptions_received: one of "before" or "after" to specify if a watchpoint is triggered before or after the pc when it stops
+default_packet_timeout: an unsigned number that specifies the default timeout in seconds
 
 //----------------------------------------------------------------------
 // "qGDBServerVersion"





More information about the lldb-commits mailing list