From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id B8A1B3851C29 for ; Tue, 15 Jun 2021 20:18:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B8A1B3851C29 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-191-bdmyRDxmMp2wQKziPbxsog-1; Tue, 15 Jun 2021 16:18:55 -0400 X-MC-Unique: bdmyRDxmMp2wQKziPbxsog-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id EA335EC1A3 for ; Tue, 15 Jun 2021 20:18:54 +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 502775C1C2 for ; Tue, 15 Jun 2021 20:18:54 +0000 (UTC) From: Florian Weimer To: Florian Weimer via Libc-alpha Subject: Re: [PATCH 00/35] Linux: Move librt into libc References: Date: Tue, 15 Jun 2021 22:18:52 +0200 In-Reply-To: (Florian Weimer via Libc-alpha's message of "Fri, 04 Jun 2021 01:14:45 +0200") Message-ID: <87tulyg9ub.fsf@oldenburg.str.redhat.com> 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.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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-List-Received-Date: Tue, 15 Jun 2021 20:18:58 -0000 * Florian Weimer via Libc-alpha: > This series moves librt into libc. > > Two functions, shm_open and shm_unlink, are also moved on Hurd. The > rest is Linux only. > > There is some odd stuff going on with 64-bit off_t ABIs with the aio_* > functions. I tried to make things a little bit more consistent. > > mq_notify and timer_create can be simplfied a bit because the fork > handler can be called directly. > > For timer_create MIPS N64 is an outlier, so I had to introduce > TIMER_T_WAS_INT_COMPAT to flag those 64-bit architectures that underwent > the int =E2=86=92 timer_t transition. > > Tested on i686-linux-gnu and x86_64-linux-gnu. Built with > build-many-glibcs.py. I'm going to repost this series later this week, rebased on the current development branch. There are some non-trivial conflicts with the time64 work. Thanks, Florian