From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 125107 invoked by alias); 13 Jan 2020 15:19:18 -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 125095 invoked by uid 89); 13 Jan 2020 15:19:18 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy= X-HELO: us-smtp-delivery-1.mimecast.com Received: from us-smtp-1.mimecast.com (HELO us-smtp-delivery-1.mimecast.com) (207.211.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 13 Jan 2020 15:19:16 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578928755; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=nEqKGpHQaCXCtyMWWNnpTMTuLpt/DSHrEdKcGIBYU1U=; b=JUfbcSs3c4MOZ1uOZp47viN5eXLOUbDXnIvgEFf5p52Qjlb30DtnMuo7LnrLRFzqU40uoa sp0Sy05UGfISRXg5Qsz9C3nnVDCu+OqMtYazZPhuj9DHtGBmA7f2npOwvGUYhcP7q18krs Iyaa+X/1a4XWMugR77EMcHvJOClYjOU= Received: from mail-wm1-f69.google.com (mail-wm1-f69.google.com [209.85.128.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-185-bQj4gQpPPdyEZSRxbyGKkA-1; Mon, 13 Jan 2020 10:19:14 -0500 Received: by mail-wm1-f69.google.com with SMTP id g26so1323207wmk.6 for ; Mon, 13 Jan 2020 07:19:13 -0800 (PST) Return-Path: Received: from ?IPv6:2001:8a0:f913:f700:4c97:6d52:2cea:997b? ([2001:8a0:f913:f700:4c97:6d52:2cea:997b]) by smtp.gmail.com with ESMTPSA id x11sm14770775wmg.46.2020.01.13.07.19.11 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 13 Jan 2020 07:19:12 -0800 (PST) Subject: Re: [PATCH v2 18/24] Multi-target support To: Simon Marchi , gdb-patches@sourceware.org References: <20191017225026.30496-1-palves@redhat.com> <20191017225026.30496-19-palves@redhat.com> <0f1729b2-8f91-9906-f3a9-d9a0960af04b@simark.ca> From: Pedro Alves Message-ID: Date: Mon, 13 Jan 2020 15:59:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <0f1729b2-8f91-9906-f3a9-d9a0960af04b@simark.ca> X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2020-01/txt/msg00326.txt.bz2 On 1/12/20 9:45 PM, Simon Marchi wrote: > On 2019-10-17 6:50 p.m., Pedro Alves wrote: >> This commit adds multi-target support to GDB. What this means is that >> with this commit, GDB can now be connected to different targets at the >> same time. E.g., you can debug a live native process and a core dump >> at the same time, connect to multiple gdbservers, etc. >> >> ... > > The darwin-nat target also needs to be updated, I have a patch that builds > here on this branch on my Github: > > https://github.com/simark/binutils-gdb/tree/darwin-nat-multi-target > > But it is not cleaned up yet, and I will need to go over it again to give it > a second look. Thanks for handling this! Pedro Alves