1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Fix vDSO initialization on arm and mips

This commit is contained in:
Andreas Schwab
2019-09-24 12:16:37 +02:00
parent f2144b7874
commit eb502f72cd
3 changed files with 18 additions and 5 deletions

View File

@ -20,8 +20,8 @@
#define VDSO_HASH 61765110
/* List of system calls which are supported as vsyscalls. */
#define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_gettimeofday"
#define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_clock_gettime"
#define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime"
#define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday"
#ifndef __ASSEMBLER__