From owner-cvs-src@FreeBSD.ORG Tue Feb 24 14:51:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86F1616A4CE; Tue, 24 Feb 2004 14:51:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81C4343D1D; Tue, 24 Feb 2004 14:51:42 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1OMpgGe085324; Tue, 24 Feb 2004 14:51:42 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1OMpg3G085323; Tue, 24 Feb 2004 14:51:42 -0800 (PST) (envelope-from phk) Message-Id: <200402242251.i1OMpg3G085323@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 24 Feb 2004 14:51:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES options src/sys/ddb db_sym.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Feb 2004 22:51:42 -0000 phk 2004/02/24 14:51:42 PST FreeBSD src repository Modified files: sys/conf NOTES options sys/ddb db_sym.c Log: Add DDB_NUMSYM option which in addition to the symbolic representation also prints the actual numerical value of the symbol in question. Users of addr2line(1) will be less proficient in hex arithmetic as a consequence. This amongst other things means that traceback lines change from: siointr1(c4016800,c073bda0,0,c06b699c,69f) at siointr1+0xc5 to siointr1(c4016800,c073bda0,0,c06b699c,69f) at 0xc062b0bd = siointr1+0xc5 I made this an option to avoid bikesheds. ~ ~ ~ Revision Changes Path 1.1198 +5 -0 src/sys/conf/NOTES 1.430 +1 -0 src/sys/conf/options 1.35 +6 -0 src/sys/ddb/db_sym.c