From patchwork Tue May 7 17:51:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Crowe X-Patchwork-Id: 1096462 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-101819-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=mcrowe.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="lRBsokaa"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44z6d95DCNz9s3Z for ; Wed, 8 May 2019 03:52:29 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; q=dns; s=default; b=SU97uZA+ 7/QT7e0hJNmQVDPzqXWHUv0DtRcYYf46C15SJ2QS9ixMFc0JGg6HgVB+yKKfsT37 GkD81QC1Vfwpbw78M4IMgZLI8ES9KaSn6TtWAtCpNzXUk0JbL1tBLJf7hOixE7tj xwKqkGvk2lWFY3eW7+VH0VtuXkh/zdQlP20= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; s=default; bh=WY4P8RKw9Jt33O E5GVCDftWhCqg=; b=lRBsokaanNq5p+XJ5AyX15y0pZbpocQ4it6/JnYh7DRQgt CZHtub59f9BFnkzjRSR8WTpvLKcsGndgFtkNY9qyRHZPbp75ox0uKoitC1TsOtNk MpcDntu8Lu5vhdMK7ScrIA1si+VxIuUnELiGXPY+0GuqLfJME0jN+IH+hxThA= Received: (qmail 77147 invoked by alias); 7 May 2019 17:52:15 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 77088 invoked by uid 89); 7 May 2019 17:52:15 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=HX-Languages-Length:1322 X-HELO: avasout02.plus.net X-CM-Score: 0.00 From: Mike Crowe To: libc-alpha@sourceware.org Cc: Mike Crowe Subject: [PATCH v2 6/6] Update NEWS for new _clockwait functions Date: Tue, 7 May 2019 18:51:00 +0100 Message-Id: <1d1eda562cc3d086d52bf1fa97db5823ece1b466.1557251247.git-series.mac@mcrowe.com> In-Reply-To: References: In-Reply-To: References: * NEWS: Mention new pthread_cond_clockwait, pthread_rwlock_clockrdlock, pthread_rwlock_clockwrlock and sem_clockwait functions. --- ChangeLog | 6 ++++++ NEWS | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9625d95..5cc2ea8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2019-05-07 Mike Crowe + + * NEWS: Mention new pthread_cond_clockwait, + pthread_rwlock_clockrdlock, pthread_rwlock_clockwrlock and + sem_clockwait functions. + 2019-05-04 Mike Crowe nptl: Add POSIX-proposed pthread_rwlock_clockrdlock & diff --git a/NEWS b/NEWS index 41cffa4..be674db 100644 --- a/NEWS +++ b/NEWS @@ -34,6 +34,12 @@ Major new features: pointer subtraction within the allocated object, where results might overflow the ptrdiff_t type. +* Add new POSIX-proposed pthread_cond_clockwait, pthread_rwlock_clockrdlock, + pthread_rwlock_clockwrlock and sem_clockwait functions. These behave + similarly to their "timed" equivalents, but also accept a clockid_t + parameter to determine which clock their timeout should be measured + against. + Deprecated and removed features, and other changes affecting compatibility: * The functions clock_gettime, clock_getres, clock_settime,