From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3469 invoked by alias); 3 Feb 2013 15:55:11 -0000 Received: (qmail 3442 invoked by uid 22791); 3 Feb 2013 15:55:09 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 03 Feb 2013 15:54:58 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r13FswcG002749 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 3 Feb 2013 10:54:58 -0500 Received: from host2.jankratochvil.net ([10.3.113.16]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r13FssoW028807 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sun, 3 Feb 2013 10:54:57 -0500 Date: Sun, 03 Feb 2013 15:55:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Subject: [commit] [patchv2 1/11] Remove xfullpath (use gdb_realpath instead) Message-ID: <20130203155453.GA4448@host2.jankratochvil.net> References: <20130127223135.GB15252@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130127223135.GB15252@host2.jankratochvil.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes 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: 2013-02/txt/msg00055.txt.bz2 On Sun, 27 Jan 2013 23:31:35 +0100, Jan Kratochvil wrote: > gdb/ > 2013-01-25 Jan Kratochvil > > Replace xfullpath calls by gdb_realpath calls. > * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the > function comment. > * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path. > Remove it from the iterate_over_some_symtabs call. > (dw2_map_symtabs_matching_filename): Remove parameter full_path. > Remove it from the dw2_map_expand_apply calls, remove a block handling > it. > * psymtab.c (partial_map_expand_apply): Remove parameter full_path. > Remove it from the iterate_over_some_symtabs call. > (partial_map_symtabs_matching_filename): Remove parameter full_path. > Remove it from the partial_map_expand_apply calls, remove a block > handling it. Drop gdb_realpath call and cleanups from the real_path > handling. > * source.c (openp): Drop the comment part about xfullpath. Replace > xfullpath calls by gdb_realpath calls. > (find_and_open_source): Replace xfullpath call by gdb_realpath call. > * symfile.h (struct quick_symbol_functions): Remove parameter full_path > from method map_symtabs_matching_filename and its comment. > * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by > gdb_realpath call. > * symtab.c (iterate_over_some_symtabs): Remove parameter full_path, > remove it also from the function comment, remove a block handling it. > Drop gdb_realpath call and cleanups from the real_path handling. > (iterate_over_symtabs): Drop variable full_path and its use. > * symtab.h (iterate_over_some_symtabs): Remove parameter full_path. > * utils.c (xfullpath): Remove. > * utils.h (xfullpath): Remove. > > gdb/testsuite/ > 2013-01-25 Jan Kratochvil > > * gdb.gdb/xfullpath.exp: Replace xfullpath calls by gdb_realpath calls. Checked in: http://sourceware.org/ml/gdb-cvs/2013-02/msg00015.html Jan