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_AU,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,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 523681F463 for ; Tue, 17 Dec 2019 21:49:23 +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:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=giOeRmclh4cRj23F8GfUX5dZvUuuh57 AQIkISoFKyLli+OeHs30J1ic52wKT6fkV1DMXyrUBE4sLt+m31sso2pdGCllhou7 4FbQnr6ouLIMvSGd8HMHGGHrF6YmnGMIGAxkeg18HzneFLyhacFcHbjvst69WR2E eZ79R/WjTMZA= 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:subject:date:message-id:in-reply-to :references; s=default; bh=mg6EbpTPsFdevsHch6ODYernLYU=; b=lBiEP wnZZF98L30icunfi+ssgXoMmHVQLl69MKFbaQzOd45p3qytV+9iczNwkHsTK0hdc gXnH5i/DknwrEnKGlAJNqxpJYMSoaWCGxwkwF7ZeqOJ/kqolMUolsl5IBBRlB4G0 l7CCkHNAyaiySI+XfAdhUh7OdZdKMoltN8ouyc= Received: (qmail 111423 invoked by alias); 17 Dec 2019 21:47:54 -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 111373 invoked by uid 89); 17 Dec 2019 21:47:54 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-pl1-f196.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:subject:date:message-id:in-reply-to:references; bh=ksM5WLZsOihCy56Sm0ULLXBsJZzuRJv6DVViIctJXn0=; b=hYGhF70yLANXcfk7A+YMJKDQ0H0QRrw7vylpiTDwUS9jjlL/phy2ScExdqhU2Oz/Dh TmedkA1c+qu3XRXzqSIb2SH4ft6LkO1rydDBeEdEfDRf+/LlPFZbzv3Cg0Dv3BMWrfNi i5mAykxizJKRYxpW3X/7m8krREBD91LGl9intTtLIxkfYGmuUcQgyY5QD7mQ5brgDiMR yku41BMgGkkZ8BvGoe3UrKRBf5pl4MmvFjre0pHbf2rx0jPnDftEgaKs/suNKL+biSgg epRhqi6e54zB9qu53f/erpG1v/9KHG2y4istzdKlJihY7letLJqo/1zQi4EfW/bl4+D7 /8fw== From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 12/16] linux: Enable vDSO clock_gettime64 for i386 Date: Tue, 17 Dec 2019 18:47:24 -0300 Message-Id: <20191217214728.2886-12-adhemerval.zanella@linaro.org> In-Reply-To: <20191217214728.2886-1-adhemerval.zanella@linaro.org> References: <20191217214728.2886-1-adhemerval.zanella@linaro.org> It was added on Linux 5.3 (commit 22ca962288c0a). Checked on i686-linux-gnu with 5.3.0 kernel. --- sysdeps/unix/sysv/linux/i386/sysdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h index b2e750d490..5156587d95 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.h +++ b/sysdeps/unix/sysv/linux/i386/sysdep.h @@ -314,6 +314,7 @@ struct libc_do_syscall_args /* List of system calls which are supported as vsyscalls. */ # define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime" +# define HAVE_CLOCK_GETTIME64_VSYSCALL "__vdso_clock_gettime64" # define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday" # define HAVE_TIME_VSYSCALL "__vdso_time" # define HAVE_CLOCK_GETRES_VSYSCALL "__vdso_clock_getres" -- 2.17.1