From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 80417 invoked by alias); 5 May 2015 18:35:29 -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 80407 invoked by uid 89); 5 May 2015 18:35:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout29.012.net.il Received: from mtaout29.012.net.il (HELO mtaout29.012.net.il) (80.179.55.185) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 May 2015 18:35:27 +0000 Received: from conversion-daemon.mtaout29.012.net.il by mtaout29.012.net.il (HyperSendmail v2007.08) id <0NNW00D003EDXO00@mtaout29.012.net.il> for gdb-patches@sourceware.org; Tue, 05 May 2015 21:34:29 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout29.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NNW0056J3LH2W80@mtaout29.012.net.il>; Tue, 05 May 2015 21:34:29 +0300 (IDT) Date: Tue, 05 May 2015 18:35:00 -0000 From: Eli Zaretskii Subject: Re: [RFA/doco/commit] Make the "info dll" command available on all platform. In-reply-to: <1430848969-10842-1-git-send-email-brobecker@adacore.com> To: Joel Brobecker Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83383aswi5.fsf@gnu.org> References: <1430848969-10842-1-git-send-email-brobecker@adacore.com> X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg00080.txt.bz2 > From: Joel Brobecker > Date: Tue, 5 May 2015 11:02:49 -0700 > > A follow-up on a discussion we had a while back: > https://www.sourceware.org/ml/gdb-patches/2015-01/msg00050.html > > The "info dll", an alias of the "info sharedlibrary" command, is > currently only defined in windows native versions. This patch makes > it universally available by moving the alias declaration to solib.c, > and adjusts the documentation accordingly. > > Making it universally available has two benefits: > - Windows users moving to a Unix platforms are still able to use > the same command for getting the list of shared libraries; > - Unix to Windows cross debuggers now provide that command also. > > gdb/ChangeLog: > > * solib.c (_initialize_solib): Add "info dll" alias creation. > * windows-nat.c (set_windows_aliases): Delete. > (_initialize_windows_nat): Remove deprecated_init_ui_hook > assignment. > * NEWS: Add news entry about "info dll" now being available > on all platforms. > > gdb/doc/ChangeLog: > > * gdb.texinfo (Files): Add "info dll" documentation. > (Cygwin Native): Remove "info dll" documentation. The documentation parts are OK. Thanks.