This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH 0/5] y2038: linux: timer_[sg]ettime conversion to 64 bit time
- From: Lukasz Majewski <lukma at denx dot de>
- To: Joseph Myers <joseph at codesourcery dot com>, Paul Eggert <eggert at cs dot ucla dot edu>
- Cc: Alistair Francis <alistair23 at gmail dot com>, Alistair Francis <alistair dot francis at wdc dot com>, GNU C Library <libc-alpha at sourceware dot org>, Adhemerval Zanella <adhemerval dot zanella at linaro dot org>, Florian Weimer <fweimer at redhat dot com>, Florian Weimer <fw at deneb dot enyo dot de>, Zack Weinberg <zackw at panix dot com>, Carlos O'Donell <carlos at redhat dot com>, Lukasz Majewski <lukma at denx dot de>
- Date: Mon, 11 Nov 2019 22:47:53 +0100
- Subject: [PATCH 0/5] y2038: linux: timer_[sg]ettime conversion to 64 bit time
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