From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id A1C72384BC3A; Wed, 26 Oct 2022 15:15:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A1C72384BC3A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666797311; bh=UgueoWRNsjzN03VsrTPSTFrHTtT0wUZYxFd41RWQ+vY=; h=From:To:Subject:Date:From; b=SlCVWwCMsD1MjaOIpkDVEsjOJcT1kqoZE16XYW82nrqR70utpGBrLK4HBDDyqB/Eg 91Ofw+JyNx7txUDQA14oNIVsbqlQv8oK1a9uEyRtOQo0wAijKqGYm84b2cFJildaG9 9NSRkd9MDQmvz5K8ML28pkprcxFXdd3NoUNp3+7c= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] TODO(uapi): aarch64: morello: use non-ifunc gettimeofday X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: e6e84e0d94600ae60c244f43372fc5d20947f9ba X-Git-Newrev: 52c2f9f524e6a3e1ebdd92169da6d4f68bd48ce3 Message-Id: <20221026151511.A1C72384BC3A@sourceware.org> Date: Wed, 26 Oct 2022 15:15:11 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=52c2f9f524e6a3e1ebdd92169da6d4f68bd48ce3 commit 52c2f9f524e6a3e1ebdd92169da6d4f68bd48ce3 Author: Szabolcs Nagy Date: Thu Mar 17 10:09:46 2022 +0000 TODO(uapi): aarch64: morello: use non-ifunc gettimeofday TODO: Remove this once morello has vdso gettimeofday. Diff: --- sysdeps/unix/sysv/linux/aarch64/gettimeofday.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c b/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c index ad421f4b05..c24fd83067 100644 --- a/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c @@ -16,5 +16,7 @@ License along with the GNU C Library; if not, see . */ -#define USE_IFUNC_GETTIMEOFDAY +#ifndef __CHERI_PURE_CAPABILITY__ +# define USE_IFUNC_GETTIMEOFDAY +#endif #include