Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2057719186 for ; Tue, 12 Apr 2016 16:00:08 +0000 (UTC) Received: (qmail 62579 invoked by uid 500); 12 Apr 2016 16:00:08 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 62519 invoked by uid 500); 12 Apr 2016 16:00:08 -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 62509 invoked by uid 99); 12 Apr 2016 16:00:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Apr 2016 16:00:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9DB9B18044B for ; Tue, 12 Apr 2016 16:00:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.999 X-Spam-Level: X-Spam-Status: No, score=0.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id aZSJBsVGAON6 for ; Tue, 12 Apr 2016 16:00:06 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id 3B4285F20E for ; Tue, 12 Apr 2016 16:00:06 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 51105E019D for ; Tue, 12 Apr 2016 16:00:05 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 4D0B23A0186 for ; Tue, 12 Apr 2016 16:00:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1738822 - /apr/apr/trunk/CHANGES Date: Tue, 12 Apr 2016 16:00:05 -0000 To: commits@apr.apache.org From: ylavic@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160412160005.4D0B23A0186@svn01-us-west.apache.org> Author: ylavic Date: Tue Apr 12 16:00:05 2016 New Revision: 1738822 URL: http://svn.apache.org/viewvc?rev=1738822&view=rev Log: Axe some backported entries. Modified: apr/apr/trunk/CHANGES Modified: apr/apr/trunk/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/trunk/CHANGES?rev=1738822&r1=1738821&r2=1738822&view=diff ============================================================================== --- apr/apr/trunk/CHANGES [utf-8] (original) +++ apr/apr/trunk/CHANGES [utf-8] Tue Apr 12 16:00:05 2016 @@ -7,17 +7,6 @@ Changes for APR 2.0.0 *) apr_table_overlap: Add APR_OVERLAP_TABLES_ADD to merge and set when overlapping tables. [Graham Leggett] - *) apr_proc/global_mutex: Fix API regarding the native OS mutexes - accessors from/to available APR mechanisms, adding the new functions - apr_os_proc_mutex_get_ex() and apr_os_proc_mutex_set_ex() which give - control to the user over the selected mechanisms, including the missing - POSIX semaphores (sem_t) on platforms supporting them. - [Yann Ylavic] - - *) apr_proc_mutex-pthread: Refcount shared mutexes usage to avoid - destruction while still is use by some process(es). PR 49504. - [Yann Ylavic] - *) apr_filepath_merge: Fix truename length calculation on Windows in cases where the "short" name variant is actually longer than the "long" or "true" name. See: testnames.c:merge_shortname().