[Lldb-commits] [lldb] r200068 - Note that qHostInfo prints the cputype and cpusubtype in base10;

Jason Molenda jmolenda at apple.com
Fri Jan 24 20:44:34 PST 2014


Author: jmolenda
Date: Fri Jan 24 22:44:34 2014
New Revision: 200068

URL: http://llvm.org/viewvc/llvm-project?rev=200068&view=rev
Log:
Note that qHostInfo prints the cputype and cpusubtype in base10;
qProcessInfo prints the cputype and cpusubtype in base16.

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=200068&r1=200067&r2=200068&view=diff
==============================================================================
--- lldb/trunk/docs/lldb-gdb-remote.txt (original)
+++ lldb/trunk/docs/lldb-gdb-remote.txt Fri Jan 24 22:44:34 2014
@@ -523,8 +523,8 @@ read packet: $cputype:16777223;cpusubtyp
 
 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
+cputype: is a number that is the mach-o CPU type that is being debugged (base 10)
+cpusubtype: is a number that is the mach-o CPU subtype type that is being debugged (base 10)
 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
@@ -621,8 +621,8 @@ real-uid: the real user id of the proces
 real-gid: the real group id of the process
 effective-uid: the effective user id of the process
 effective-gid: the effective group id of the process
-cputype: the Mach-O CPU type of the process
-cpusubtype: the Mach-O CPU subtype of the process
+cputype: the Mach-O CPU type of the process  (base 16)
+cpusubtype: the Mach-O CPU subtype of the process  (base 16)
 ostype: is a string the represents the OS being debugged (darwin, linux, freebsd)
 vendor: is a string that represents the vendor (apple)
 endian: is one of "little", "big", or "pdp"





More information about the lldb-commits mailing list