From patchwork Thu Dec 12 18:16:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella X-Patchwork-Id: 36792 Received: (qmail 43677 invoked by alias); 12 Dec 2019 18:16:29 -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 43530 invoked by uid 89); 12 Dec 2019 18:16:28 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.8 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=H*RU:209.85.222.67, HX-Spam-Relays-External:209.85.222.67 X-HELO: mail-ua1-f67.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=dFH9Te0U0mm8NW7zlYdzKl0T7cOE7/LDGlJNyIeGC5E=; b=cGGtAdiRqH+r5O0jysCetlG34wM3iZ413HX4Pcnh5Uav7gM6yRIG9RWD0wygt5jTNl 4OrCTLNfEnDpdtD24VyQT0/DLIts/B287ny/CbMnsuPGuTjJ1buuXVwi/orgP3nAzYcO 4H4F9ob11z4AZrOd7YLhJ0jTRL06A2RfK647W0DNmN4tqGgH7grk+ftzYNSd/8C7gO0o s8x7B9t6twmCAPY0U6+53v2TySwrUtGPHiuCXmHxUSywOCHWG3AQiQ+RzWATwfTJqQFw Zkrbtume3dzeEQ9BhkpNTwennel9T6GafvY5JncSKi1XTDOG+fWuusE4kpRMvHk4BQr+ v5dw== Return-Path: From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 04/12] linux: Update mips vDSO symbols Date: Thu, 12 Dec 2019 15:16:06 -0300 Message-Id: <20191212181614.31782-4-adhemerval.zanella@linaro.org> In-Reply-To: <20191212181614.31782-1-adhemerval.zanella@linaro.org> References: <20191212181614.31782-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 2470f32d58..defad8eb62 100644 --- a/sysdeps/unix/sysv/linux/mips/sysdep.h +++ b/sysdeps/unix/sysv/linux/mips/sysdep.h @@ -22,3 +22,4 @@ /* 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"