From owner-cvs-src@FreeBSD.ORG Thu Apr 10 20:54:02 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AA7310656C3; Thu, 10 Apr 2008 20:54:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3948E8FC19; Thu, 10 Apr 2008 20:54:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m3AKs2eO038386; Thu, 10 Apr 2008 20:54:02 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m3AKs2fk038385; Thu, 10 Apr 2008 20:54:02 GMT (envelope-from rwatson) Message-Id: <200804102054.m3AKs2fk038385@repoman.freebsd.org> From: Robert Watson Date: Thu, 10 Apr 2008 20:54:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/kern kern_descrip.c kern_proc.c src/sys/sys sysctl.h user.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 10 Apr 2008 20:54:02 -0000 rwatson 2008-04-10 20:54:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/kern kern_descrip.c kern_proc.c sys/sys sysctl.h user.h Log: Merge kern_descrip.c:1.314, kern_proc.c:1.256, sysctl.h:1.153, user.h:1.71 from HEAD to RELENG_7: Add two new sysctls in support of the forthcoming procstat(1) to support its -f and -v arguments: kern.proc.filedesc - dump file descriptor information for a process, if debugging is permitted, including socket addresses, open flags, file offsets, file paths, etc. kern.proc.vmmap - dump virtual memory mapping information for a process, if debugging is permitted, including layout and information on underlying objects, such as the type of object and path. These provide a superset of the information historically available through the now-deprecated procfs(4), and are intended to be exported in an ABI-robust form. Revision Changes Path 1.313.2.3 +180 -1 src/sys/kern/kern_descrip.c 1.252.2.4 +159 -1 src/sys/kern/kern_proc.c 1.148.2.1 +3 -0 src/sys/sys/sysctl.h 1.70.2.1 +92 -1 src/sys/sys/user.h