blob: 3b0bfa323b13fe5b2d5d272c486899585e7069b1 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From 253b042d2bf10e9abfa9cc508e0782aefd834145 Mon Sep 17 00:00:00 2001
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 16 Oct 2020 11:03:47 -0700
4Subject: [PATCH] futex.h: Define __NR_futex if it does not exist
5
6__NR_futex is not defines by newer architectures e.g. arc, riscv32 as
7they only have 64bit variant of time_t. Glibc defines SYS_futex interface based on
8__NR_futex, since this is used in applications, such applications start
9to fail to build for these newer architectures. This patch defines a
10fallback to alias __NR_futex to __NR_futex_tim64 so SYS_futex keeps
11working
12
13Upstream-Status: Pending
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
Andrew Geissler9aee5002022-03-30 16:27:02 +000015
Andrew Geissler4c19ea12020-10-27 13:52:24 -050016---
17 src/util/futex.h | 4 ++++
18 1 file changed, 4 insertions(+)
19
Andrew Geissler9aee5002022-03-30 16:27:02 +000020diff --git a/src/util/futex.h b/src/util/futex.h
21index 43097f4..941b0ec 100644
Andrew Geissler4c19ea12020-10-27 13:52:24 -050022--- a/src/util/futex.h
23+++ b/src/util/futex.h
24@@ -34,6 +34,10 @@
25 #include <sys/syscall.h>
26 #include <sys/time.h>
27
28+#if !defined(SYS_futex) && defined(SYS_futex_time64)
29+# define SYS_futex SYS_futex_time64
30+#endif
31+
32 static inline long sys_futex(void *addr1, int op, int val1, const struct timespec *timeout, void *addr2, int val3)
33 {
34 return syscall(SYS_futex, addr1, op, val1, timeout, addr2, val3);