From patchwork Thu Sep 7 22:41:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Albert ARIBAUD (3ADEV)" X-Patchwork-Id: 811216 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-84336-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="DOUN68Ct"; 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 3xpFt72Jf2z9sCZ for ; Fri, 8 Sep 2017 08:46:07 +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; q=dns; s=default; b=V6sZwm7P6K+6aEe5qztgLaeON9SzPP+ 16CqJI0xVivL7rewRdQZuBx+JEt38CjhnhzQtj4GLJNflx+/4x71CVYqT6rWUFZu xbkXnh+6/QlbqIIx5gh67oiHwzBe1+ge9jdYcOeEQbiQ2U2aPKABj6Uk8Tyx9G+D wtPukURM6rWg= 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; s=default; bh=oghEIjlgxKVoMd7mLpmMbsqxBZ8=; b=DOUN6 8CtwWT8wAfd3TihL3Rctdky/vLcS5a0+CV28KdicDK5nKExePJVZmnCIU8NHbAqc 2ZwuSge2KVbyDtAh1mZTrsDfX9r/96VXPvkmgZfQv25miSSxjDbkPIdVob5y19nb hXqGKhnzKWaEGlrWFlL2yCpO1mT7OzqB4MqOXU= Received: (qmail 76431 invoked by alias); 7 Sep 2017 22:43:46 -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 76338 invoked by uid 89); 7 Sep 2017 22:43:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy= X-HELO: smtp6-g21.free.fr From: "Albert ARIBAUD (3ADEV)" To: libc-alpha@sourceware.org Cc: "Albert ARIBAUD (3ADEV)" Subject: [RFC PATCH 18/52] Y2038: add struct __itimerspec64 Date: Fri, 8 Sep 2017 00:41:45 +0200 Message-Id: <20170907224219.12483-19-albert.aribaud@3adev.fr> In-Reply-To: <20170907224219.12483-18-albert.aribaud@3adev.fr> References: <20170907224219.12483-1-albert.aribaud@3adev.fr> <20170907224219.12483-2-albert.aribaud@3adev.fr> <20170907224219.12483-3-albert.aribaud@3adev.fr> <20170907224219.12483-4-albert.aribaud@3adev.fr> <20170907224219.12483-5-albert.aribaud@3adev.fr> <20170907224219.12483-6-albert.aribaud@3adev.fr> <20170907224219.12483-7-albert.aribaud@3adev.fr> <20170907224219.12483-8-albert.aribaud@3adev.fr> <20170907224219.12483-9-albert.aribaud@3adev.fr> <20170907224219.12483-10-albert.aribaud@3adev.fr> <20170907224219.12483-11-albert.aribaud@3adev.fr> <20170907224219.12483-12-albert.aribaud@3adev.fr> <20170907224219.12483-13-albert.aribaud@3adev.fr> <20170907224219.12483-14-albert.aribaud@3adev.fr> <20170907224219.12483-15-albert.aribaud@3adev.fr> <20170907224219.12483-16-albert.aribaud@3adev.fr> <20170907224219.12483-17-albert.aribaud@3adev.fr> <20170907224219.12483-18-albert.aribaud@3adev.fr> Signed-off-by: Albert ARIBAUD (3ADEV) --- include/time.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/time.h b/include/time.h index 648cef2786..1d585184d8 100644 --- a/include/time.h +++ b/include/time.h @@ -47,6 +47,12 @@ struct __timeval64 __int64_t tv_usec; /* Microseconds */ }; +struct __itimerspec64 +{ + struct __timespec64 it_interval; + struct __timespec64 it_value; +}; + extern __typeof (clock_getres) __clock_getres; extern __typeof (clock_gettime) __clock_gettime; libc_hidden_proto (__clock_gettime)