From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28177 invoked by alias); 25 Mar 2014 20:06:14 -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 28154 invoked by uid 89); 25 Mar 2014 20:06:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-vc0-f176.google.com Received: from mail-vc0-f176.google.com (HELO mail-vc0-f176.google.com) (209.85.220.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 25 Mar 2014 20:06:12 +0000 Received: by mail-vc0-f176.google.com with SMTP id lc6so1238023vcb.35 for ; Tue, 25 Mar 2014 13:06:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=xUVi04ec1tYMqSg/or7itz8fdQ6J6J9ViFuZyadjHzo=; b=dDH924MQe6O09tLc6nkbFbi7yv/9C6zoIvczN2H5T7rClwfiBRvqM5GYuxx1Iakit8 DtBlpJIu93sr49kO8ok42MfE9jV0VUTFxXO/wWwjs+hpcd36vyoMh5M67IJcbIdYKiO6 uoJibeoZDG7q+YSzevneVljQ/G4d+EDCjIOEqjBO+7uVfWvpdkvj+4V6egzrrGd9nQq9 oI+UdehlnjRlgogU3F187awwP6ov8oLvlTkAQjemx5d7bZ9uSsHzHIwLGqiaAe4/U8Z9 7IeAFCMyHpSEKN/P2LK2zNtk3zpiBhZhTrjZuRggFeVGl2pJc+hlhqpSeqC6clq0j6eD 0KNg== X-Gm-Message-State: ALoCoQm7aDLangsPRRJF2fimakgdlxH0y/SVt+gMZae1xRWH7uf+IujVoabX9N+WyjBhssCkA7Tf72F3pIwxir7nS/KtHbHmehOw7CUswl24Uk2f4IAKSd8yErGuPmnVhZ1cXQ+3Sf0ZZph55jLwmhIxDHmquZYbTqHGGSGL9m1xC/4bqff2k+KxbJknx9WRqod1hyo7oNtkrFcZUSYUef1A6zNXPMeQFw== MIME-Version: 1.0 X-Received: by 10.58.152.142 with SMTP id uy14mr24480137veb.4.1395777970684; Tue, 25 Mar 2014 13:06:10 -0700 (PDT) Received: by 10.52.13.101 with HTTP; Tue, 25 Mar 2014 13:06:10 -0700 (PDT) In-Reply-To: <1395069784-7406-9-git-send-email-palves@redhat.com> References: <1395069784-7406-1-git-send-email-palves@redhat.com> <1395069784-7406-9-git-send-email-palves@redhat.com> Date: Tue, 25 Mar 2014 20:06:00 -0000 Message-ID: Subject: Re: [PATCH 8/8] Allow making GDB not automatically connect to the native target. From: Doug Evans To: Pedro Alves Cc: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-03/txt/msg00601.txt.bz2 On Mon, Mar 17, 2014 at 8:23 AM, Pedro Alves wrote: > [...] > It's generic_mourn_inferior that ends up clearing inf->pid, so we need > to call it before the have_inferiors check. > [...] Hi. I didn't see this dependency documented in the code anywhere (especially the "why" of it). Could have missed it of course.