mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] [PATCH] Add clock_gettime VDSO support for Riscv64
@ 2024-09-17 18:08 Kevin
  2024-09-17 20:43 ` Rich Felker
  0 siblings, 1 reply; 2+ messages in thread
From: Kevin @ 2024-09-17 18:08 UTC (permalink / raw)
  To: musl

[-- Attachment #1: Type: text/plain, Size: 955 bytes --]

Hello,

Currently, musl on Riscv64 does not implement VDSO for the clock_gettime
function call. The following patch should fix it. (Rudimentary testing on a
Riscv64 virtual machine confirms this works.) A similar patch could
probably be made for Riscv32. This patch was made based on information
from: https://man7.org/linux/man-pages/man7/vdso.7.html

Please CC me on replies.

---
 arch/riscv64/syscall_arch.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/riscv64/syscall_arch.h b/arch/riscv64/syscall_arch.h
index 7fd042cd..81993fc8 100644
--- a/arch/riscv64/syscall_arch.h
+++ b/arch/riscv64/syscall_arch.h
@@ -71,8 +71,7 @@ static inline long __syscall6(long n, long a, long b,
long c, long d, long e, lo
 }

 #define VDSO_USEFUL
-/* We don't have a clock_gettime function.
 #define VDSO_CGT_SYM "__vdso_clock_gettime"
-#define VDSO_CGT_VER "LINUX_2.6" */
+#define VDSO_CGT_VER "LINUX_4.15"

 #define IPC_64 0
-- 
2.34.1

[-- Attachment #2: Type: text/html, Size: 1205 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-09-17 20:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-17 18:08 [musl] [PATCH] Add clock_gettime VDSO support for Riscv64 Kevin
2024-09-17 20:43 ` Rich Felker

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).