From patchwork Thu Jun 17 18:56:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 43884 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id B47CD394CC3F for ; Thu, 17 Jun 2021 18:57:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B47CD394CC3F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1623956277; bh=zj7mPWVLPvgGGI5uVhdcBOEBzKutkOXRb5P6SjkDDJA=; h=To:Subject:In-Reply-To:References:Date:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=Lg+vuybyWzcNWcdYJ+Fs3CcaFi+Q8y3WLbO39uq7xfGNbQOgCmLDOBFgeak2eXi/F HWtrIUqftxyDxLPuPEWPG+CvyRsIN8pCTXqGvx/2LQPeB2yeq+LNlsp92kbiPDQ85D q+RHmAnVHP9Mgheoc1q0tAx7nScun/SnONS9P0y8= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id 2F07F3848039 for ; Thu, 17 Jun 2021 18:56:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2F07F3848039 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-520-x5hwWZzzPim-7SgVZPHXUQ-1; Thu, 17 Jun 2021 14:56:53 -0400 X-MC-Unique: x5hwWZzzPim-7SgVZPHXUQ-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B3BFF80ED8B for ; Thu, 17 Jun 2021 18:56:52 +0000 (UTC) Received: from oldenburg.str.redhat.com (ovpn-115-60.ams2.redhat.com [10.36.115.60]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2D3FD5D9C6 for ; Thu, 17 Jun 2021 18:56:52 +0000 (UTC) To: libc-alpha@sourceware.org Subject: [PATCH 01/34] rt: Lexicographically sort Versions file; librt-routines in Makefile In-Reply-To: References: X-From-Line: 71d9d8599d6b839e7483456a877d25c0842b9b21 Mon Sep 17 00:00:00 2001 Message-Id: <71d9d8599d6b839e7483456a877d25c0842b9b21.1623956057.git.fweimer@redhat.com> Date: Thu, 17 Jun 2021 20:56:50 +0200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-Spam-Status: No, score=-12.6 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Florian Weimer via Libc-alpha From: Florian Weimer Reply-To: Florian Weimer Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" Reviewed-by: Adhemerval Zanella --- rt/Makefile | 46 ++++++++++++++++++++++++++++++++-------------- rt/Versions | 45 +++++++++++++++++++++++++++++++++------------ 2 files changed, 65 insertions(+), 26 deletions(-) diff --git a/rt/Makefile b/rt/Makefile index 797f2da51e..b0d887202d 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -24,20 +24,38 @@ include ../Makeconfig headers := aio.h mqueue.h bits/mqueue.h bits/mqueue2.h -aio-routines := aio_cancel aio_error aio_fsync aio_misc aio_read \ - aio_read64 aio_return aio_suspend aio_write \ - aio_write64 lio_listio lio_listio64 aio_sigqueue \ - aio_notify -timer-routines := timer_create timer_delete timer_getoverr \ - timer_gettime timer_settime -shm-routines := shm_open shm_unlink -mq-routines := mq_open mq_close mq_unlink mq_getattr mq_setattr \ - mq_notify mq_send mq_receive mq_timedsend \ - mq_timedreceive - -librt-routines = $(aio-routines) \ - $(timer-routines) \ - $(shm-routines) $(mq-routines) +librt-routines = \ + aio_cancel \ + aio_error \ + aio_fsync \ + aio_misc \ + aio_notify \ + aio_read \ + aio_read64 \ + aio_return \ + aio_sigqueue \ + aio_suspend \ + aio_write \ + aio_write64 \ + lio_listio \ + lio_listio64 \ + mq_close \ + mq_getattr \ + mq_notify \ + mq_open \ + mq_receive \ + mq_send \ + mq_setattr \ + mq_timedreceive \ + mq_timedsend \ + mq_unlink \ + shm_open \ + shm_unlink \ + timer_create \ + timer_delete \ + timer_getoverr \ + timer_gettime \ + timer_settime \ $(librt-routines-var) = \ diff --git a/rt/Versions b/rt/Versions index 84d1345420..f151f85ef6 100644 --- a/rt/Versions +++ b/rt/Versions @@ -1,22 +1,43 @@ librt { GLIBC_2.1 { - # AIO functions. - aio_cancel; aio_cancel64; aio_error; aio_error64; aio_fsync; aio_fsync64; - aio_init; aio_read; aio_read64; aio_return; aio_return64; aio_suspend; - aio_suspend64; aio_write; aio_write64; lio_listio; lio_listio64; + aio_cancel; + aio_cancel64; + aio_error; + aio_error64; + aio_fsync; + aio_fsync64; + aio_init; + aio_read; + aio_read64; + aio_return; + aio_return64; + aio_suspend; + aio_suspend64; + aio_write; + aio_write64; + lio_listio; + lio_listio64; } GLIBC_2.2 { - # s* - shm_open; shm_unlink; - - # t* - timer_create; timer_delete; timer_getoverrun; timer_gettime; + shm_open; + shm_unlink; + timer_create; + timer_delete; + timer_getoverrun; + timer_gettime; timer_settime; } GLIBC_2.3.4 { - # m* - mq_open; mq_close; mq_unlink; mq_getattr; mq_setattr; - mq_notify; mq_send; mq_receive; mq_timedsend; mq_timedreceive; + mq_close; + mq_getattr; + mq_notify; + mq_open; + mq_receive; + mq_send; + mq_setattr; + mq_timedreceive; + mq_timedsend; + mq_unlink; } GLIBC_2.7 { __mq_open_2;