]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/riscv/init-first.c
Remove PREPARE_VERSION and PREPARE_VERSION_KNOW
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / riscv / init-first.c
CommitLineData
7f33b09c 1/* RISC-V VDSO initialization
04277e02 2 Copyright (C) 2017-2019 Free Software Foundation, Inc.
7f33b09c
PD
3
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
7f33b09c 19
27a0914e
AZ
20#include <dl-vdso.h>
21#include <libc-vdso.h>
7f33b09c
PD
22
23long int (*VDSO_SYMBOL (getcpu)) (unsigned int *, unsigned int *, void *)
24 attribute_hidden;
25long int (*VDSO_SYMBOL (gettimeofday)) (struct timeval *, void *)
26 attribute_hidden;
27long int (*VDSO_SYMBOL (clock_gettime)) (clockid_t, struct timespec *)
28 attribute_hidden;
29long int (*VDSO_SYMBOL (clock_getres)) (clockid_t, struct timespec *)
30 attribute_hidden;
31
32static inline void
33_libc_vdso_platform_setup (void)
34{
b8386c28 35 void *p = get_vdso_symbol ("__vdso_getcpu");
7f33b09c
PD
36 PTR_MANGLE (p);
37 VDSO_SYMBOL (getcpu) = p;
38
b8386c28 39 p = get_vdso_symbol ("__vdso_gettimeofday");
7f33b09c
PD
40 PTR_MANGLE (p);
41 VDSO_SYMBOL (gettimeofday) = p;
42
b8386c28 43 p = get_vdso_symbol ("__vdso_clock_gettime");
7f33b09c
PD
44 PTR_MANGLE (p);
45 VDSO_SYMBOL (clock_gettime) = p;
46
b8386c28 47 p = get_vdso_symbol ("__vdso_clock_getres");
7f33b09c
PD
48 PTR_MANGLE (p);
49 VDSO_SYMBOL (clock_getres) = p;
50}
51
27a0914e 52#define VDSO_SETUP _libc_vdso_platform_setup
7f33b09c
PD
53
54#include <csu/init-first.c>