From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24118 invoked by alias); 16 Nov 2008 18:46:34 -0000 Received: (qmail 24047 invoked by uid 22791); 16 Nov 2008 18:46:33 -0000 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 16 Nov 2008 18:45:58 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 665892A9607 for ; Sun, 16 Nov 2008 13:45:56 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id I+w62DemO7qH for ; Sun, 16 Nov 2008 13:45:56 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 2D0052A9602 for ; Sun, 16 Nov 2008 13:45:56 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 1ABBBE7ACD; Sun, 16 Nov 2008 10:45:54 -0800 (PST) Date: Mon, 17 Nov 2008 19:13:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: [RFA/doco] document the removal of "catch load" and "catch unload" Message-ID: <20081116184554.GJ9963@adacore.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="4VrXvz3cwkc87Wze" Content-Disposition: inline User-Agent: Mutt/1.4.2.2i 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 X-SW-Source: 2008-11/txt/msg00424.txt.bz2 --4VrXvz3cwkc87Wze Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 443 First, a NEWS entry to document the fact that 2 commands have been removed: 2008-11-16 Joel Brobecker * NEWS: Document the removal of "catch load" and "catch unload". And next, an update to the GDB manual, to remove the documentation of these commands: * gdb.texinfo (Set Catchpoints): Remove the documentation of commands "catch load" and "catch unload". OK to commit? Thanks, -- Joel --4VrXvz3cwkc87Wze Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="load-unload-news.diff" Content-length: 287 diff --git a/gdb/NEWS b/gdb/NEWS --- a/gdb/NEWS +++ b/gdb/NEWS @@ -175,6 +175,12 @@ macro undef * New targets x86 DICOS i[34567]86-*-dicos* + +* Removed commands + +catch load +catch unload + These commands were actually not implemented on any target. *** Changes in GDB 6.8 --4VrXvz3cwkc87Wze Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="load-unload-doc.diff" Content-length: 720 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -3643,16 +3643,6 @@ A call to @code{vfork}. This is current A call to @code{vfork}. This is currently only available for HP-UX and @sc{gnu}/Linux. -@item load -@itemx load @var{libname} -@cindex break on load/unload of shared library -The dynamic loading of any shared library, or the loading of the library -@var{libname}. This is currently only available for HP-UX. - -@item unload -@itemx unload @var{libname} -The unloading of any dynamically loaded shared library, or the unloading -of the library @var{libname}. This is currently only available for HP-UX. @end table @item tcatch @var{event} --4VrXvz3cwkc87Wze--