diff options
author | Rich Felker <dalias@aerifal.cx> | 2024-10-22 19:11:24 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2024-10-22 19:11:24 -0400 |
commit | f2375aacac13848cb407dfa39bd06eef576d5f2a (patch) | |
tree | cd1162c1ef90bf2b10b9b0826e1ed43bd06da3c2 /arch/powerpc/syscall_arch.h | |
parent | bc5f816a7a4038255ac55e47ae6c5ef13acb8a85 (diff) | |
download | musl-f2375aacac13848cb407dfa39bd06eef576d5f2a.tar.gz |
wire up vdso clock_gettime for powerpc, powerpc64, and s390x
symbol names and versions obtained from vdso(7) man page.
Diffstat (limited to 'arch/powerpc/syscall_arch.h')
-rw-r--r-- | arch/powerpc/syscall_arch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/syscall_arch.h b/arch/powerpc/syscall_arch.h index ede97c1c..54c885cb 100644 --- a/arch/powerpc/syscall_arch.h +++ b/arch/powerpc/syscall_arch.h @@ -92,3 +92,9 @@ static inline long __syscall6(long n, long a, long b, long c, long d, long e, lo #define SO_RCVTIMEO_OLD 18 #define SO_SNDTIMEO_OLD 19 + +#define VDSO_USEFUL +#define VDSO_CGT32_SYM "__kernel_clock_gettime" +#define VDSO_CGT32_VER "LINUX_2.6.15" +#define VDSO_CGT_SYM "__kernel_clock_gettime64" +#define VDSO_CGT_VER "LINUX_5.11" |