WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] readme for pdb 0.3

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] readme for pdb 0.3
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Wed, 15 Jun 2005 14:37:13 +0000
Delivery-date: Thu, 16 Jun 2005 02:01:40 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1723, 2005/06/15 15:37:13+01:00, ach61@xxxxxxxxxxxxxxxxxxxxxx

        readme for pdb 0.3



 readme |   82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 82 insertions(+)


diff -Nru a/tools/debugger/pdb/readme b/tools/debugger/pdb/readme
--- /dev/null   Wed Dec 31 16:00:00 196900
+++ b/tools/debugger/pdb/readme 2005-06-15 22:02:43 -04:00
@@ -0,0 +1,84 @@
+
+PDB 0.3 
+http://www.cl.cam.ac.uk/netos/pdb
+
+Alex Ho  
+June 2005
+
+
+This is the latest incarnation of the pervasive debugger.
+PDB is a remote stub for GDB.  Running as a user-space
+application in domain 0, it can debug any other domain.
+
+
++------+    tcp/ip    +-------+  
+| GDB  |--------------|  PDB  |
++------+              +-------+   +-------+
+                      | Dom 0 |   | Dom U |
+                      +-------+---+-------+
+                      |  Xen              |
+                      +-------------------+
+
+Installation
+
+- Install OCaml 3.08 in domain 0.
+  http://caml.inria.fr/download.en.html  is a good place to start.
+
+- Build Xen with debugger support
+  make domu_debug=y xen
+
+- (optional)
+  Build the target domains with debugging symbols.
+  make CONFIG_DEBUG_INFO=true CONFIG_FRAME_POINTER=false linux-2.6-xenU-build
+
+  You can also change linux-2.6.11-xenU/Makefile
+  CONFIG_CC_OPTIMIZE_FOR_SIZE from -O2 to -O
+
+- Build PDB
+  (cd tools/debugger/libxendebug; make install)
+  (cd tools/debugger/pdb; make)
+
+Usage
+
+- PDB does not currently support SMP.  Please boot xen with "maxcpus=1"
+
+- Run PDB
+  domain-0.xeno# ./pdb <port>
+
+- Run GDB
+  hostname% gdb <xeno.bk>/dist/install/boot/vmlinux-syms-2.6.11.11-xenU
+
+  (gdb) target remote domain-0.xeno:<port>
+
+  At this point, you'll get an error message such as:
+  Remote debugging using domain-0.xeno:5000
+  0x00000000 in ?? ()
+  warning: shared library handler failed to enable breakpoint
+  Although GDB is connected to PDB, PDB doesn't know which domain
+  you'd like to debug, so it's just feeding GDB a bunch of zeros.
+
+  (gdb) maint packet x context = domain <domid> <vcpu>
+
+  This tells PDB that we'd like to debug a particular domain & vcpu.
+  However, since we're sending the command directly to PDB, GDB doesn't 
+  know that we now have a proper target.  We can force GDB to invalidate
+  its register cache.  This is optional; the next time the program
+  stops GDB will query for the registers automatically.
+
+  (gdb) flushreg
+
+  
+  the following gdb commands should work :)
+
+  break
+  step,   stepi
+  next,   nexti
+  continue
+  print
+
+
+To Do
+
+- watchpoints
+- support for SMP
+- support for user applications

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] readme for pdb 0.3, BitKeeper Bot <=