Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 65570 invoked from network); 19 Jun 2006 09:24:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jun 2006 09:24:25 -0000 Received: (qmail 43170 invoked by uid 500); 19 Jun 2006 09:24:24 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 43076 invoked by uid 500); 19 Jun 2006 09:24:24 -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 43065 invoked by uid 99); 19 Jun 2006 09:24:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 02:24:24 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jun 2006 02:24:23 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9BFD81A983A; Mon, 19 Jun 2006 02:24:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r415268 - in /apr/apr/branches/1.2.x: CHANGES build/apr_threads.m4 Date: Mon, 19 Jun 2006 09:24:03 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060619092403.9BFD81A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Mon Jun 19 02:24:02 2006 New Revision: 415268 URL: http://svn.apache.org/viewvc?rev=415268&view=rev 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/1.2.x/CHANGES apr/apr/branches/1.2.x/build/apr_threads.m4 Modified: apr/apr/branches/1.2.x/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/CHANGES?rev=415268&r1=415267&r2=415268&view=diff ============================================================================== --- apr/apr/branches/1.2.x/CHANGES (original) +++ apr/apr/branches/1.2.x/CHANGES Mon Jun 19 02:24:02 2006 @@ -1,5 +1,8 @@ Changes for APR 1.2.8 + *) Fix detection of pthread cross-process robust mutexes. + PR 39833. [Tsuyoshi SASAMOTO ] + *) NetBSD: Avoid leaving zombie process when using apr_signal() to ignore SIGCHLD. PR 36750. [Todd Vierling ] Modified: apr/apr/branches/1.2.x/build/apr_threads.m4 URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/build/apr_threads.m4?rev=415268&r1=415267&r2=415268&view=diff ============================================================================== --- apr/apr/branches/1.2.x/build/apr_threads.m4 (original) +++ apr/apr/branches/1.2.x/build/apr_threads.m4 Mon Jun 19 02:24:02 2006 @@ -263,7 +263,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);