Date: Tue, 26 Jan 2010 03:24:11 +0000 (UTC) From: Neel Natu <neel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r202998 - head/sys/mips/mips Message-ID: <201001260324.o0Q3OBrj062793@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001260324.o0Q3OBrj062793>