From 6d0da948fad57b6bf90694783162102f8ab98499 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 25 May 2005 04:29:00 +0000 Subject: [PATCH] How to debug user programs with gdb. --- doc/debug.texi | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/debug.texi b/doc/debug.texi index 75d9b24..389080d 100644 --- a/doc/debug.texi +++ b/doc/debug.texi @@ -292,6 +292,22 @@ that there is a bug in the original Pintos code. The first and second are quite likely, and you should seriously consider both. We hope that the third is less likely, but it is also possible. +You can also use @command{gdb} to debug a user program running under +Pintos. Start by issuing this @command{gdb} command to load the +program's symbol table: +@example +add-symbol-file @var{program} +@end example +where @var{program} is the name of the program's executable (in the host +file system, not in the Pintos file system). After this, you should be +able to debug the user program the same way you would the kernel, by +placing breakpoints, inspecting data, etc. Your actions apply to every +user program running in Pintos, not just to the one you want to debug, +so be careful in interpreting the results. Also, a name that appears in +both the kernel and the user program will actually refer to the kernel +name. (The latter problem can be avoided by giving the user executable +name on the @command{gdb} command line, instead of @file{kernel.o}.) + @node Debugging by Infinite Loop @section Debugging by Infinite Loop -- 2.30.2