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

via libc-commits libc-commits at lists.llvm.org
Thu Jun 11 07:03:40 PDT 2026


Author: Pavel Labath
Date: 2026-06-11T16:03:34+02:00
New Revision: b0c658458d48496adac2b38981b7096adc0a27d1

URL: https://github.com/llvm/llvm-project/commit/b0c658458d48496adac2b38981b7096adc0a27d1
DIFF: https://github.com/llvm/llvm-project/commit/b0c658458d48496adac2b38981b7096adc0a27d1.diff

LOG: [libc] Add syscall number for recvmmsg_time64 (#203268)

I *think* this will fix the riscv32 bot.

Added: 
    

Modified: 
    libc/include/sys/syscall.h.def

Removed: 
    


################################################################################
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