From owner-cvs-src@FreeBSD.ORG Fri Oct 24 14:05:31 2003 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 A11D016A4B3; Fri, 24 Oct 2003 14:05:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E80AF43FBF; Fri, 24 Oct 2003 14:05:30 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9OL5UXJ024241; Fri, 24 Oct 2003 14:05:30 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9OL5UWn024240; Fri, 24 Oct 2003 14:05:30 -0700 (PDT) (envelope-from jhb) Message-Id: <200310242105.h9OL5UWn024240@repoman.freebsd.org> From: John Baldwin Date: Fri, 24 Oct 2003 14:05:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_intr.c src/sys/sys interrupt.h 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: Fri, 24 Oct 2003 21:05:31 -0000 jhb 2003/10/24 14:05:30 PDT FreeBSD src repository Modified files: sys/kern kern_intr.c sys/sys interrupt.h Log: - Add a DDB command 'show intrcnt' to show the non-zero interrupt counts. - Add a DDB function to dump the contents of an ithread and optionally details about each handler in that ithread. This function can be used by MD code to implement DDB commands that display information about interrupt sources and their registered handlers. Revision Changes Path 1.99 +165 -0 src/sys/kern/kern_intr.c 1.25 +3 -0 src/sys/sys/interrupt.h