From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 105732 invoked by alias); 4 May 2017 05:31: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 104429 invoked by uid 89); 4 May 2017 05:29:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=sixth, now!, now X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 04 May 2017 05:29:57 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 06F767F3EB for ; Thu, 4 May 2017 05:29:59 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 06F767F3EB Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx01.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=sergiodj@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 06F767F3EB Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id B069C173F3; Thu, 4 May 2017 05:29:58 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Pedro Alves Subject: [PATCH v6 0/4] Implement the ability to start inferiors with a shell on gdbserver Date: Thu, 04 May 2017 05:31:00 -0000 Message-Id: <20170504052954.16936-1-sergiodj@redhat.com> In-Reply-To: <1482464361-4068-1-git-send-email-sergiodj@redhat.com> References: <1482464361-4068-1-git-send-email-sergiodj@redhat.com> X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00098.txt.bz2 Hi there, This is the sixth iteration of the patch series. You can see the last version here: Getting close, now! Changes from v5: - gdb_termios.h has been pushed. - The "C++ifying" patch has been pushed. - "common/common-fork-child.c" does not exist anymore. fork_inferior and startup_inferior have been moved to a new "nat/fork-inferior.c" file. The proper "gdb/config/*/*.mh" files have been updated to include "fork-inferior.o" as a NATDEPFILE. - Targets on both GDB and gdbserver sides are now responsible for adding the thread/process to the respective lists after the call to fork_inferior.. This means that fork_inferior does not call add_thread_silent anymore. I'm not submitting a fix to the hack mentioned by Pedro on ; can do that in another patch. No regressions found so far. Thanks, Sergio.