diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/kernel-features.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/kernel-features.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/kernel-features.h b/sysdeps/unix/sysv/linux/mips/kernel-features.h index 83f7a47..702c357 100644 --- a/sysdeps/unix/sysv/linux/mips/kernel-features.h +++ b/sysdeps/unix/sysv/linux/mips/kernel-features.h @@ -23,23 +23,13 @@ #define __ASSUME_ACCEPT4_SYSCALL 1 /* Support for the recvmmsg syscall was added in 2.6.33. */ -#if __LINUX_KERNEL_VERSION >= 0x020621 -# define __ASSUME_RECVMMSG_SYSCALL 1 -#endif +#define __ASSUME_RECVMMSG_SYSCALL 1 /* Support for the sendmmsg syscall was added in 3.1. */ -#if __LINUX_KERNEL_VERSION >= 0x030100 -# define __ASSUME_SENDMMSG_SYSCALL 1 -#endif +#define __ASSUME_SENDMMSG_SYSCALL 1 #include_next <kernel-features.h> -/* The n32 syscall ABI did not have a getdents64 syscall until - 2.6.35. */ -#if _MIPS_SIM == _ABIN32 && __LINUX_KERNEL_VERSION < 0x020623 -# undef __ASSUME_GETDENTS64_SYSCALL -#endif - /* The MIPS kernel does not support futex_atomic_cmpxchg_inatomic if emulating LL/SC. */ #if __mips == 1 || defined _MIPS_ARCH_R5900 |