1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

RISC-V: don't assume PI mutexes and robust futexes before 4.20 (bug 23864)

Support for futex_cmpxchg as only been added to 4.20-rc1.
This commit is contained in:
Andreas Schwab
2018-11-06 09:23:02 +01:00
parent e143ceba56
commit 295132ff05
2 changed files with 12 additions and 0 deletions

View File

@ -21,3 +21,8 @@
#undef __ASSUME_CLONE_DEFAULT
#define __ASSUME_CLONE_BACKWARDS 1
/* No support for PI mutexes or robust futexes before 4.20. */
#if __LINUX_KERNEL_VERSION < 0x041400
# undef __ASSUME_SET_ROBUST_LIST
#endif