From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130262 invoked by alias); 18 Jan 2016 16:00:51 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 130207 invoked by uid 89); 18 Jan 2016 16:00:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=unavailable version=3.3.2 spammy=HX-Received-From:4830, HX-Received-From:134, HX-Received-From:2001, HX-HELO:eggs.gnu.org X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 18 Jan 2016 16:00:48 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aLCES-0004Zu-Nt for gdb-patches@sourceware.org; Mon, 18 Jan 2016 11:00:46 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:32947) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aLCEK-0004YL-3I; Mon, 18 Jan 2016 11:00:32 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1246 helo=HOME-C4E4A596F7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aLCEH-00063U-V1; Mon, 18 Jan 2016 11:00:31 -0500 Date: Mon, 18 Jan 2016 16:00:00 -0000 Message-Id: <8360yqev2z.fsf@gnu.org> From: Eli Zaretskii To: John Baldwin CC: gdb-patches@sourceware.org, binutils@sourceware.org In-reply-to: <1453084047-16175-6-git-send-email-jhb@FreeBSD.org> (message from John Baldwin on Sun, 17 Jan 2016 18:27:26 -0800) Subject: Re: [PATCH v3 5/6] Add support for LWP-based threads on FreeBSD. Reply-to: Eli Zaretskii References: <1453084047-16175-1-git-send-email-jhb@FreeBSD.org> <1453084047-16175-6-git-send-email-jhb@FreeBSD.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00383.txt.bz2 > From: John Baldwin > Date: Sun, 17 Jan 2016 18:27:26 -0800 > > diff --git a/gdb/NEWS b/gdb/NEWS > index 9d3a47c..4f276a1 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -3,6 +3,8 @@ > > *** Changes since GDB 7.10 > > +* GDB now supports debugging kernel-based threads on FreeBSD. > + > * Per-inferior thread numbers > > Thread numbers are now per inferior instead of global. If you're > @@ -93,6 +95,10 @@ set debug bfd-cache > show debug bfd-cache > Control display of debugging info regarding bfd caching. > > +set debug fbsd-lwp > +show debug fbsd-lwp > + Control display of debugging info regarding FreeBSD threads. > + OK for this part. > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo > index a08a196..26ba1e2 100644 > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -23594,6 +23594,11 @@ expression parsing. The default is off. > @item show debug expression > Displays the current state of displaying debugging info about > @value{GDBN} expression parsing. > +@item set debug fbsd-lwp > +@cindex FreeBSD LWP debug messages > +Turns on or off debugging messages from the FreeBSD LWP debug support. "Turn", not "Turns", for consistency with the rest of text. OK with this fixed. Thanks.