From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24666 invoked by alias); 26 Jul 2017 14:50:51 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 24647 invoked by uid 89); 26 Jul 2017 14:50:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Endo, endo, HTo:D*t-online.de, H*Ad:D*t-online.de 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; Wed, 26 Jul 2017 14:50:48 +0000 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 28928659AD; Wed, 26 Jul 2017 14:50:47 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 28928659AD Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=dmalcolm@redhat.com Received: from ovpn-116-58.phx2.redhat.com (ovpn-116-58.phx2.redhat.com [10.3.116.58]) by smtp.corp.redhat.com (Postfix) with ESMTP id BE83C6FEE2; Wed, 26 Jul 2017 14:50:46 +0000 (UTC) Message-ID: <1501080646.10760.46.camel@redhat.com> Subject: Re: [PATCH 12/17] Add server.h and server.c From: David Malcolm To: Oleg Endo , gcc-patches@gcc.gnu.org Date: Wed, 26 Jul 2017 14:50:00 -0000 In-Reply-To: <1501079707.2499.83.camel@t-online.de> References: <1500926714-56988-1-git-send-email-dmalcolm@redhat.com> <1500926714-56988-13-git-send-email-dmalcolm@redhat.com> <1501079707.2499.83.camel@t-online.de> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg01675.txt.bz2 On Wed, 2017-07-26 at 23:35 +0900, Oleg Endo wrote: > On Mon, 2017-07-24 at 16:05 -0400, David Malcolm wrote: > > > > + > > +You should have received a copy of the GNU General Public License > > +along with GCC; see the file COPYING3. If not see > > +.  */ > > + > > +#ifndef GCC_SERVER_H > > +#define GCC_SERVER_H > > + > > +/* Wrapper aroung "int" for file descriptors. */ > ~~~^ > around :) Thanks; fixed in my working copy. Someone pointed out to me privately that instead/as well as serving on a port, we could be launched as a subprocess by the IDE, and serve the RPC over stdin/stdout; this would be simpler for IDEs to cope with. I may have a look at supporting that for the next version. Dave