From patchwork Tue Feb 14 22:38:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 141210 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 8645B1007D1 for ; Wed, 15 Feb 2012 09:38:53 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1329863934; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:In-Reply-To:References:Date: Message-ID:Subject:From:To:Cc:Content-Type:Mailing-List: Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:Sender:Delivered-To; bh=kSnI1XXptwBruFTHiNSjOKD68hA=; b=Xl1q39CzrumRZ6iL8+1/zyGEFgmpH1VxmT5cOkftQhADfkrqj9RHl69tOgwZdY 0VgjTIHSvEAzOGxBHMFC+5hO5yhGAjxRrnASleTlW7LIKWU/mDJmPsUsGqLthd40 dBqlqD5Mc5+orcTKYubm2ayQtfchpySPPYNxeJsPE4YdE= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:In-Reply-To:References:Date:Message-ID:Subject:From:To:Cc:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=r23GDFytLXMbYoGPq0XMFANLe/ilc0hR/WnVEV9kYoG+y4Z93nE3ZWFwRK6FxS VAUByqO441erYuZFrYBc1AjYxAGaqUtU10ISjMvK/Ykm8LNAW04SaWy5QPPnfU3O kpX37MXD3zrLBWKJH+hNQWhOyiWbD2k6WAqW9fST8oz44=; Received: (qmail 18267 invoked by alias); 14 Feb 2012 22:38:50 -0000 Received: (qmail 18255 invoked by uid 22791); 14 Feb 2012 22:38:49 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-lpp01m010-f47.google.com (HELO mail-lpp01m010-f47.google.com) (209.85.215.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 14 Feb 2012 22:38:35 +0000 Received: by lahc1 with SMTP id c1so502294lah.20 for ; Tue, 14 Feb 2012 14:38:33 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.48.9 with SMTP id h9mr7941229lbn.20.1329259113613; Tue, 14 Feb 2012 14:38:33 -0800 (PST) Received: by 10.112.52.40 with HTTP; Tue, 14 Feb 2012 14:38:33 -0800 (PST) In-Reply-To: References: Date: Tue, 14 Feb 2012 22:38:33 +0000 Message-ID: Subject: Re: [wwwdocs] update gcc-4.7/changes.html From: Jonathan Wakely To: Gerald Pfeifer Cc: gcc-patches Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org On 12 February 2012 21:55, Jonathan Wakely wrote: > On 12 February 2012 18:25, Gerald Pfeifer wrote: >> On Wed, 8 Feb 2012, Jonathan Wakely wrote: >>> Add note on thread improvements to libstdc++ changes. >> >> Nice.  I have a hunch that many will be interested to learn which >> targets are now benefiting from this.  Do you have a list, even if >> not complete to add there? > > Not a precise one, but I think it's basically any POSIX platform > supporting pthreads. > > Previously it was only POSIX platorms supporting pthreads *and* the > POSIX Timeouts option. I've made it a bit more specific. Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/changes.html,v retrieving revision 1.82 diff -u -r1.82 changes.html --- changes.html 13 Feb 2012 21:57:31 -0000 1.82 +++ changes.html 14 Feb 2012 22:37:15 -0000 @@ -453,7 +453,7 @@
  • uses-allocator construction for tuple;
  • vector meets the allocator-aware container requirements;
  • replacing monotonic_clock with steady_clock;
  • -
  • enabling the thread support library on a wider range of targets;
  • +
  • enabling the thread support library on most POSIX targets;
  • many small improvements to conform to the FDIS.