Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 4901 invoked from network); 8 Nov 2006 18:56:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Nov 2006 18:56:43 -0000 Received: (qmail 59299 invoked by uid 500); 8 Nov 2006 18:56:54 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 59212 invoked by uid 500); 8 Nov 2006 18:56:53 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 59194 invoked by uid 99); 8 Nov 2006 18:56:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 10:56:53 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 10:56:41 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 452D41A9846; Wed, 8 Nov 2006 10:56:14 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r472590 - in /apr/apr/branches/0.9.x: CHANGES build/apr_threads.m4 Date: Wed, 08 Nov 2006 18:56:14 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061108185614.452D41A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Wed Nov 8 10:56:13 2006 New Revision: 472590 URL: http://svn.apache.org/viewvc?view=rev&rev=472590 Log: Merge r415267 from trunk: * build/apr_threads.m4 (APR_CHECK_PTHREAD_ROBUST_SHARED_MUTEX): Fix detection of robust cross-process pthread mutexes. PR: 39833 Submitted by: Tsuyoshi SASAMOTO Modified: apr/apr/branches/0.9.x/CHANGES apr/apr/branches/0.9.x/build/apr_threads.m4 Modified: apr/apr/branches/0.9.x/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/CHANGES?view=diff&rev=472590&r1=472589&r2=472590 ============================================================================== --- apr/apr/branches/0.9.x/CHANGES (original) +++ apr/apr/branches/0.9.x/CHANGES Wed Nov 8 10:56:13 2006 @@ -1,5 +1,8 @@ Changes with APR 0.9.13 + *) Fix detection of pthread cross-process robust mutexes. + PR 39833. [Tsuyoshi SASAMOTO ] + *) Correctly retrieve 'empty' environment values with apr_env_get on Win32 (e.g. "VAR="), and added validation to testall suite. PR 40764. [Issac Goldstand ] Modified: apr/apr/branches/0.9.x/build/apr_threads.m4 URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/build/apr_threads.m4?view=diff&rev=472590&r1=472589&r2=472590 ============================================================================== --- apr/apr/branches/0.9.x/build/apr_threads.m4 (original) +++ apr/apr/branches/0.9.x/build/apr_threads.m4 Wed Nov 8 10:56:13 2006 @@ -248,7 +248,7 @@ exit(2); if (pthread_mutexattr_setrobust_np(&attr, PTHREAD_MUTEX_ROBUST_NP)) exit(3); - if (pthread_mutexattr_setprotocol(&mattr, PTHREAD_PRIO_INHERIT)) + if (pthread_mutexattr_setprotocol(&attr, PTHREAD_PRIO_INHERIT)) exit(4); if (pthread_mutex_init(&mutex, &attr)) exit(5);