From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 69776 invoked by alias); 11 Sep 2019 21:36:23 -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 69768 invoked by uid 89); 11 Sep 2019 21:36:22 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.8 required=5.0 tests=AWL,BAYES_00,ENV_AND_HDR_SPF_MATCH,GIT_PATCH_2,RCVD_IN_DNSWL_NONE,SPF_PASS,USER_IN_DEF_SPF_WL autolearn=ham version=3.3.1 spammy=hopes, HX-Languages-Length:1181 X-HELO: mail-ot1-f68.google.com Received: from mail-ot1-f68.google.com (HELO mail-ot1-f68.google.com) (209.85.210.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 11 Sep 2019 21:36:21 +0000 Received: by mail-ot1-f68.google.com with SMTP id b2so24013413otq.10 for ; Wed, 11 Sep 2019 14:36:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=NRNrvu3rji43LBh9fuZGAaiquLLbqPQYYnZoXUUG7V4=; b=nAphAOUw8UeGHHI7tnjMfzrO4YeLQzqoWwL2NjVhMDXdIr2UtbTeK6xGOuftJqOtwm Wm7ik1wF13nAPSDwYQo8/fPH+Ohu55eLocsHZNeqt0H1u6lR0OQX1wGJAKAhNwF6PjdP ++QI54LtNS1p8AjUNT3vv4OOGZyxSNyxsIXLMXJpqhowdLGWFtq5RVjBuD37He6agxAo a1IW3L6yYtttHmmoRBaaH89g+rJabUgGOOEYyDUDWHJYQ9jqRePisIb6zvGCAjfd6IbH X72moI8woa5c23Y8z/JZlfYUohXVNJFc4GecqVtOK8iG4tUqRi4OY6V083dVuKHTDcGY 9tMg== MIME-Version: 1.0 References: <20190909180830.215313-1-cbiesinger@google.com> In-Reply-To: <20190909180830.215313-1-cbiesinger@google.com> From: "Christian Biesinger via gdb-patches" Reply-To: Christian Biesinger Date: Wed, 11 Sep 2019 21:36:00 -0000 Message-ID: Subject: Re: [PATCH 0/3] Refactor some path methods in main.c to use std::string To: gdb-patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00211.txt.bz2 I pushed these three patches: Total 24 (delta 21), reused 0 (delta 0) To ssh://sourceware.org/git/binutils-gdb.git 9cab7ecda2..f2aec7f6d1 HEAD -> master Christian On Mon, Sep 9, 2019 at 1:08 PM Christian Biesinger wrote: > > Patches 1 and 2 in this series are extracted from my previous patch series > to support a system gdbinit.d directory, but since they are independent from > that and (I hope) less controversial, I moved them here in hopes to get them > committed sooner. > (https://sourceware.org/ml/gdb-patches/2019-08/msg00436.html) > > Patch 3 is new. > > Christian Biesinger (3): > Refactor get_init_files to use std::string > Factor out the code to do the datadir-relocation for gdbinit > Make relocate_{path,gdb_directory} return std::string > > gdb/auto-load.c | 2 +- > gdb/defs.h | 8 +- > gdb/guile/guile.c | 5 +- > gdb/jit.c | 4 +- > gdb/main.c | 210 ++++++++++++++++++++++---------------------- > gdb/python/python.c | 2 +- > gdb/top.c | 2 +- > gdb/xml-syscall.c | 7 +- > 8 files changed, 123 insertions(+), 117 deletions(-) > > -- > 2.23.0.187.g17f5b7556c-goog >