View | Details | Raw Unified | Return to bug 9894 | Differences between
and this patch

Collapse All | Expand All

(-)a/sysdeps/unix/sysv/linux/kernel-features.h (-2 / +9 lines)
Lines 462-469 Link Here
462
# define __ASSUME_SET_ROBUST_LIST	1
462
# define __ASSUME_SET_ROBUST_LIST	1
463
#endif
463
#endif
464
464
465
/* Support for PI futexes was added in 2.6.18.  */
465
/* Support for PI futexes was added in 2.6.18 on i386, powerpc, s390, sparc64
466
#if __LINUX_KERNEL_VERSION >= 0x020612
466
   x86_64. It was added in 2.6.19 on ia64 and in 2.6.23 on sh. */
467
#if (__LINUX_KERNEL_VERSION >= 0x020612 && defined __i386__) \
468
     || (__LINUX_KERNEL_VERSION >= 0x020612 && defined __powerpc__) \
469
     || (__LINUX_KERNEL_VERSION >= 0x020612 && defined __s390__) \
470
     || (__LINUX_KERNEL_VERSION >= 0x020612 && defined __sparc__ && __arch64__) \
471
     || (__LINUX_KERNEL_VERSION >= 0x020612 && defined __x86_64__) \
472
     || (__LINUX_KERNEL_VERSION >= 0x020613 && defined __ia64__) \
473
     || (__LINUX_KERNEL_VERSION >= 0x020617 && defined __sh__)
467
# define __ASSUME_FUTEX_LOCK_PI	1
474
# define __ASSUME_FUTEX_LOCK_PI	1
468
#endif
475
#endif

Return to bug 9894