2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 01:51:51 +00:00

vdso: proxify the __vdso_clock_gettime64 function

It was added in v5.3-rc1~211^2~4^2~10.

Fixes #2390

Signed-off-by: Andrei Vagin <avagin@gmail.com>
This commit is contained in:
Andrei Vagin 2024-07-03 09:26:28 -07:00
parent ac22aaf576
commit 1815838191

View File

@ -12,7 +12,7 @@
* This is a minimal amount of symbols
* we should support at the moment.
*/
#define VDSO_SYMBOL_MAX 6
#define VDSO_SYMBOL_MAX 7
#define VDSO_SYMBOL_GTOD 2
/*
@ -42,11 +42,12 @@
const char *aarch_vdso_symbol3 = "__vdso_gettimeofday"; \
const char *aarch_vdso_symbol4 = "__vdso_time"; \
const char *aarch_vdso_symbol5 = "__kernel_sigreturn"; \
const char *aarch_vdso_symbol6 = "__kernel_rt_sigreturn";
const char *aarch_vdso_symbol6 = "__kernel_rt_sigreturn"; \
const char *aarch_vdso_symbol7 = "__vdso_clock_gettime64"; \
#define ARCH_VDSO_SYMBOLS \
aarch_vdso_symbol1, aarch_vdso_symbol2, aarch_vdso_symbol3, aarch_vdso_symbol4, aarch_vdso_symbol5, \
aarch_vdso_symbol6
aarch_vdso_symbol6, aarch_vdso_symbol7
/* "__kernel_vsyscall", */