From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 123043 invoked by alias); 4 Jun 2017 22:18:07 -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 118062 invoked by uid 89); 4 Jun 2017 22:18:03 -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=Hx-languages-length:809, sergio 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; Sun, 04 Jun 2017 22:18:02 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 768FB20265 for ; Sun, 4 Jun 2017 22:18:05 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 768FB20265 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=sergiodj@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 768FB20265 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 29180816CD; Sun, 4 Jun 2017 22:18:05 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Pedro Alves Subject: [PATCH v7 0/4] Implement the ability to start inferiors with a shell on gdbserver Date: Sun, 04 Jun 2017 22:18:00 -0000 Message-Id: <20170604221803.17649-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-06/txt/msg00091.txt.bz2 Hi, This is the seventh iteration of the patch series. You can see the last version here: Changes from v6: - Several small cleanups/fixes caught by Pedro. - The testcase now doesn't run when using a remote target board. This is because it is not trivial to set environment variables via ssh/dejagnu, so one testcase fails. - Using the new gdb/configure.nat file. - The post_fork_inferior function on gdb/gdbserver/server.c now takes a "my_startup_inferior" function pointer as argument. This is done to avoid using startup_inferior directly, which is not declared on all targets (e.g., win32). Other than that, the patch hasn't changed. Thanks, Sergio.