From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1113 invoked by alias); 10 May 2017 20:25:11 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 1099 invoked by uid 89); 10 May 2017 20:25:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.8 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-qt0-f177.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=P8pRID69zGl3A3IZ0r8ZOr5KUxbF+VUZjRAD2UxtGN0=; b=slD3nuoLrI9B/qRevMhvVrSuGX50rVz8NyBsRPxjO0NdiEWWkns+G52o8cG/WaU3iZ FXH56bnDnDPyOP9s3iDSSes+2Q6j0+Hpd1e3axANdkSYquqwBxUBIPDaZ6BRXtiSw7jG ARShKAqY3/trQyLxuQZm3OAaSYhe/6/qp2PMtSF/zXQ127F08jq74oCpwHDOMEyg67/l hi88ifZXoIb8F8fuzub1C9YY30pgsal4AjDFVTjts0jQCZBl23L16CVuMhpeQ9+iUh/U V9pbBC+3k2g5G0RJIWdtMPsIH1vDJjmUKgS54QRpxg3U5VWouS/9l8/BQ4Y8umgMXmOP p5xQ== X-Gm-Message-State: AODbwcDxVAeSU+B1GIXFr/fLdk+KE+HfwjTc2tcO5eR5QKAwJkgMoStE EaB8i0CM5O7bjeDb X-Received: by 10.200.49.100 with SMTP id h33mr440738qtb.52.1494447911210; Wed, 10 May 2017 13:25:11 -0700 (PDT) Subject: Re: [PATCH v4 2/4] Add C11 threads support To: Joseph Myers References: <1494441656-1212-1-git-send-email-adhemerval.zanella@linaro.org> <1494441656-1212-3-git-send-email-adhemerval.zanella@linaro.org> Cc: libc-alpha@sourceware.org From: Adhemerval Zanella Message-ID: Date: Wed, 10 May 2017 20:25:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-05/txt/msg00267.txt.bz2 On 10/05/2017 17:22, Joseph Myers wrote: > On Wed, 10 May 2017, Adhemerval Zanella wrote: > >> diff --git a/conform/Makefile b/conform/Makefile >> index 63556b5..a79415f 100644 >> --- a/conform/Makefile >> +++ b/conform/Makefile >> @@ -34,9 +34,9 @@ conformtest-headers-ISO := assert.h ctype.h errno.h float.h limits.h locale.h \ >> conformtest-headers-ISO99 := $(conformtest-headers-ISO) complex.h fenv.h \ >> inttypes.h iso646.h stdbool.h stdint.h tgmath.h \ >> wchar.h wctype.h >> -# Missing ISO11 expectations for: stdatomic.h threads.h. >> +# Missing ISO11 expectations for: stdatomic.h >> conformtest-headers-ISO11 := $(conformtest-headers-ISO99) stdalign.h \ >> - stdnoreturn.h uchar.h >> + stdnoreturn.h uchar.h threads.h > > These header lists are meant to be alphabetical, so threads.h before > uchar.h. Ack. > >> +macro TSS_DTOR_ITERATIONS > > Use macro-int-constant, since C11 says this is an integer constant > expression. > Ack, I will change them locally.