[libc-commits] [libc] [libc] Add syscall number for recvmmsg_time64 (PR #203268)

Pavel Labath via libc-commits libc-commits at lists.llvm.org
Thu Jun 11 06:47:18 PDT 2026


https://github.com/labath created https://github.com/llvm/llvm-project/pull/203268

I *think* this will fix the riscv32 bot.

>From dc250acbca3c146b59d2ba6c8ed5e44d4d719ab6 Mon Sep 17 00:00:00 2001
From: Pavel Labath <pavel at labath.sk>
Date: Thu, 11 Jun 2026 13:44:30 +0000
Subject: [PATCH] [libc] Add syscall number for recvmmsg_time64

I *think* this will fix the riscv32 bot.
---
 libc/include/sys/syscall.h.def | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libc/include/sys/syscall.h.def b/libc/include/sys/syscall.h.def
index f7e53cc4942d5..486947709b572 100644
--- a/libc/include/sys/syscall.h.def
+++ b/libc/include/sys/syscall.h.def
@@ -1637,6 +1637,10 @@
 #define SYS_recvmmsg __NR_recvmmsg
 #endif
 
+#ifdef __NR_recvmmsg_time64
+#define SYS_recvmmsg_time64 __NR_recvmmsg_time64
+#endif
+
 #ifdef __NR_recvmsg
 #define SYS_recvmsg __NR_recvmsg
 #endif



More information about the libc-commits mailing list