From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 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 dcvr.yhbt.net (Postfix) with ESMTPS id A7D711F454 for ; Mon, 11 Nov 2019 21:48:37 +0000 (UTC) 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 :mime-version:content-transfer-encoding; q=dns; s=default; b=jdw 5zgJ7Duj3yCj+DoFOF2NsP6kQ3x9T4bm1GXe2vO/UNDDZ7n3K8Dl8+rex9WmXoEX u9j6qW56qMhD7sOpqEDim352Wv1vLsr8eNZBKysdJZLZ1E7qeE5QLKqbltjzMfu9 GrBRmP+mgFI2HvPGZlnEKyUDYZaa3/DABFZ0MIb0= 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 :mime-version:content-transfer-encoding; s=default; bh=BV0J8P9tf iI2fc65HRaz+dDjwtI=; b=kCC2iHnq58HrLP56t5Yv2xQsoPfN+bDsXCH5RIWiJ echDhemgnM1RPdBlPbqKs8ny28WIvxDVUcL3bynMuzjBqYplGxK+Ir/lmLjqejXY 8g1D27BsmkXdiG6NlrnPX8TAPng84cimya/xCw0Y8LPlseIuUbSYivguhTDL+L2n Us= Received: (qmail 77750 invoked by alias); 11 Nov 2019 21:48:35 -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 Received: (qmail 77556 invoked by uid 89); 11 Nov 2019 21:48:26 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-out.m-online.net From: Lukasz Majewski To: Joseph Myers , Paul Eggert Cc: Alistair Francis , Alistair Francis , GNU C Library , Adhemerval Zanella , Florian Weimer , Florian Weimer , Zack Weinberg , Carlos O'Donell , Lukasz Majewski Subject: [PATCH 0/5] y2038: linux: timer_[sg]ettime conversion to 64 bit time Date: Mon, 11 Nov 2019 22:47:53 +0100 Message-Id: <20191111214758.3677-1-lukma@denx.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch series converts timer_[sg]ettime functions to support 64 bit time. The glibc internal struct __itimerspec64 is introduced in first patch. Two next patches decouple x86_64 specific timer_[sg]ettime implementations from the Linux generic ones for easier conversion (as x86_64 already supports 64 bit time). Two last patches are converting Linux generic timer syscalls. Lukasz Majewski (5): time: Introduce glibc's internal struct __itimerspec64 timer: Decouple x86_64 specific timer_gettime from generic Linux implementation timer: Decouple x86_64 specific timer_settime from generic Linux implementation y2038: linux: Provide __timer_gettime64 implementation y2038: linux: Provide __timer_settime64 implementation include/time.h | 27 +++++++ sysdeps/unix/sysv/linux/timer_gettime.c | 49 ++++++++++--- sysdeps/unix/sysv/linux/timer_settime.c | 71 ++++++++++++++++--- .../unix/sysv/linux/x86_64/timer_gettime.c | 12 ++-- .../unix/sysv/linux/x86_64/timer_settime.c | 14 ++-- 5 files changed, 144 insertions(+), 29 deletions(-) -- 2.20.1