svn commit: r202998 - head/sys/mips/mips

Neel Natu neel at FreeBSD.org
Tue Jan 26 03:24:11 UTC 2010


Author: neel
Date: Tue Jan 26 03:24:11 2010
New Revision: 202998
URL: http://svn.freebsd.org/changeset/base/202998

Log:
  Print the address of the base of the stackframe in DDB backtrace output.
  
  Approved by: imp (mentor)

Modified:
  head/sys/mips/mips/db_trace.c

Modified: head/sys/mips/mips/db_trace.c
==============================================================================
--- head/sys/mips/mips/db_trace.c	Tue Jan 26 02:39:14 2010	(r202997)
+++ head/sys/mips/mips/db_trace.c	Tue Jan 26 03:24:11 2010	(r202998)
@@ -344,7 +344,7 @@ done:
 			(*printfn)("?");
 	}
 
-	(*printfn) (") ra %x sz %d\n", ra, stksize);
+	(*printfn) (") ra %x sp %x sz %d\n", ra, sp, stksize);
 
 	if (ra) {
 		if (pc == ra && stksize == 0)


More information about the svn-src-head mailing list