From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 118731 invoked by alias); 3 Sep 2015 09:58:30 -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 117912 invoked by uid 89); 3 Sep 2015 09:58:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 03 Sep 2015 09:58:28 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 669202B7874; Thu, 3 Sep 2015 09:58:27 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-44.ams2.redhat.com [10.36.116.44]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t839wPlT002994 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 3 Sep 2015 05:58:27 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id t839wN0q013793; Thu, 3 Sep 2015 11:58:24 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id t839wMoG013792; Thu, 3 Sep 2015 11:58:22 +0200 Date: Thu, 03 Sep 2015 10:02:00 -0000 From: Jakub Jelinek To: Sebastian Huber Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH 1/3] [gomp] Add RTEMS configuration Message-ID: <20150903095822.GQ1847@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <1438081499-9651-1-git-send-email-sebastian.huber@embedded-brains.de> <20150903094649.GP1847@tucnak.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150903094649.GP1847@tucnak.redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00236.txt.bz2 On Thu, Sep 03, 2015 at 11:46:49AM +0200, Jakub Jelinek wrote: > On Tue, Jul 28, 2015 at 01:04:57PM +0200, Sebastian Huber wrote: > > libgomp/ChangeLog > > 2015-07-28 Sebastian Huber > > > > * config/rtems/bar.c: New. > > * config/rtems/bar.h: Likewise. > > * config/rtems/mutex.c: Likewise. > > * config/rtems/mutex.h: Likewise. > > * config/rtems/sem.c: Likewise. > > * config/rtems/sem.h: Likewise. > > * configure.ac (*-*-rtems*): Check that Newlib provides a proper > > header file. > > * configure.tgt (*-*-rtems*): Enable RTEMS configuration if > > supported by Newlib. > > * configure: Regenerate. > > > --- /dev/null > > +++ b/libgomp/config/rtems/bar.c > > @@ -0,0 +1,255 @@ > > + > > +static gomp_barrier_t * > > +generation_to_barrier(int *addr) > > Missing space before (. Oh, and please use #include "libgomp.h" #include "bar.h" instead of #include #include (to help differentiate system headers from libgomp specific headers). Jakub