From owner-svn-src-all@freebsd.org Tue Dec 29 23:28:49 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00D27A54824; Tue, 29 Dec 2015 23:28:49 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D79761DFF; Tue, 29 Dec 2015 23:28:48 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id E86CEB93E; Tue, 29 Dec 2015 18:28:47 -0500 (EST) From: John Baldwin To: src-committers@freebsd.org Cc: svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r292894 - in head: sys/kern sys/sys tests/sys/kern Date: Tue, 29 Dec 2015 15:28:44 -0800 Message-ID: <1596028.4ekdSm0miH@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201512292325.tBTNPQd5022781@repo.freebsd.org> References: <201512292325.tBTNPQd5022781@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 29 Dec 2015 18:28:48 -0500 (EST) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Dec 2015 23:28:49 -0000 On Tuesday, December 29, 2015 11:25:26 PM John Baldwin wrote: > Author: jhb > Date: Tue Dec 29 23:25:26 2015 > New Revision: 292894 > URL: https://svnweb.freebsd.org/changeset/base/292894 > > Log: > Add ptrace(2) reporting for LWP events. > > Add two new LWPINFO flags: PL_FLAG_BORN and PL_FLAG_EXITED for reporting > thread creation and destruction. Newly created threads will stop to report > PL_FLAG_BORN before returning to userland and exiting threads will stop to > report PL_FLAG_EXIT before exiting completely. Both of these events are > only enabled and reported if PT_LWP_EVENTS is enabled on a process. Bah, should have included: Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D4703 I also noticed right after committing that this is missing the manpage updates. Those will come shortly. -- John Baldwin