X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flib%2Fdebug.c;h=6d7c9e13bf064761b1496a232994040498b4c5d2;hb=0b01eb8d16b9ff48657aceec17d68522b2a3cfdf;hp=577ab67f06c39f60f8fd606d157b6a8a564916bd;hpb=750d21936d284127e265d050ccbce76fca1ece1a;p=pintos-anon diff --git a/src/lib/debug.c b/src/lib/debug.c index 577ab67..6d7c9e1 100644 --- a/src/lib/debug.c +++ b/src/lib/debug.c @@ -1,19 +1,32 @@ -#include "debug.h" +#include #include -#include "interrupt.h" -#include "lib.h" +#include +#include +#include +#include +/* Prints the call stack, that is, a list of addresses, one in + each of the functions we are nested within. gdb or addr2line + may be applied to kernel.o to translate these into file names, + line numbers, and function names. */ void -panic (const char *format, ...) +debug_backtrace (void) { - va_list args; + static bool explained; + void **frame; + + printf ("Call stack:"); + for (frame = __builtin_frame_address (0); + frame != NULL && frame[0] != NULL; + frame = frame[0]) + printf (" %p", frame[1]); + printf (".\n"); - intr_disable (); - - va_start (args, format); - vprintk (format, args); - printk ("\n"); - va_end (args); - - for (;;); + if (!explained) + { + explained = true; + printf ("The `backtrace' program can make call stacks useful.\n" + "Read \"Backtraces\" in the \"Debugging Tools\" chapter\n" + "of the Pintos documentation for more information.\n"); + } }