From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 308 invoked by alias); 4 Oct 2013 15:01:41 -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 32764 invoked by uid 89); 4 Oct 2013 15:01:40 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 04 Oct 2013 15:01:40 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r94F1cw7017672 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 4 Oct 2013 11:01:38 -0400 Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r94F1bGi009118 for ; Fri, 4 Oct 2013 11:01:37 -0400 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH] [DOC] Mention what happens when the thread of a thread-specific breakpoint is gone. Date: Fri, 04 Oct 2013 15:01:00 -0000 Message-Id: <1380898896-16767-1-git-send-email-palves@redhat.com> X-SW-Source: 2013-10/txt/msg00143.txt.bz2 We recently made GDB auto-delete thread-specific breakpoints when the corresponding thread is gone, but we haven't mentioned it in the manual. OK? gdb/ 2013-10-04 Pedro Alves PR breakpoints/11568 * gdb.texinfo (Thread-Specific Breakpoints): Mention what happens when the thread is gone. --- gdb/doc/gdb.texinfo | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index a68556b..97b0aff 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -5864,6 +5864,14 @@ after the breakpoint condition, like this: @end table +Thread-specific breakpoints are automatically deleted when +@value{GDBN} detects the corresponding thread is gone. For example: + +@smallexample +(@value{GDBP}) c +Thread-specific breakpoint 3 deleted - thread 28 is gone. +@end smallexample + @node Interrupted System Calls @subsection Interrupted System Calls -- 1.7.11.7