From patchwork Fri Nov 29 21:03:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 36384 Received: (qmail 72179 invoked by alias); 29 Nov 2019 21:03:42 -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 72120 invoked by uid 89); 29 Nov 2019 21:03:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-qk1-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=laE1kw2Ha54oP+5XsbAUFvfw9qAOg2Z0YjWh6b4B2/s=; b=hmgb9FXNpFmPcJDMia3fAVxMRHCpKfxRtNiesHaXkuZ9urWsrhMXa0qrFjGc5sYTnY P0ZwD1uub+bB7+3DSVGwOLZFuLdRwgKKbTrXwRrDLVqFZDaYphqJdMUP/7P57Vekq8mL cduKJnJjVDLYAS+8U6tynDUAtidGc92EsOZDr2b4Cm4MnW+ctQapRUAoyXmgR3T+v4H9 CW3ww+cEsRo0rAODpsn9nyHJFCXUQWrPN7NP6BgcebHURGrpIq872I8PxnSxVIRyj2V5 Q3gHA2+5D7wjjfwinUCz/WhJBPrEWhPG/jqcRuphzkeFFU8Zc87yh3sSW9XMLLW0KpGy FxWw== Return-Path: From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 4/7] linux: Update mips vDSO symbols Date: Fri, 29 Nov 2019 18:03:24 -0300 Message-Id: <20191129210327.26434-4-adhemerval.zanella@linaro.org> In-Reply-To: <20191129210327.26434-1-adhemerval.zanella@linaro.org> References: <20191129210327.26434-1-adhemerval.zanella@linaro.org> The clock_getres is a new implementation added on Linux 5.4 (abed3d826f2f). Checked with a build against mips-linux-gnu and mips64-linux-gnu. --- sysdeps/unix/sysv/linux/mips/sysdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/unix/sysv/linux/mips/sysdep.h b/sysdeps/unix/sysv/linux/mips/sysdep.h index 82a3cf9f3d..47c0333621 100644 --- a/sysdeps/unix/sysv/linux/mips/sysdep.h +++ b/sysdeps/unix/sysv/linux/mips/sysdep.h @@ -22,6 +22,7 @@ /* List of system calls which are supported as vsyscalls. */ #define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime" #define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday" +#define HAVE_CLOCK_GETRES_VSYSCALL "__vdso_clock_getres" #ifndef __ASSEMBLER__