X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=urcu%2Ffutex.h;h=7f175645f2b27d22a5d6358815870a80fc84fd36;hb=e9529b91ce756b476f5ad339512482c93c03c046;hp=13d2b1a0a9c73904563e2b9b46d40d19e3316686;hpb=f54e7d5ef5e33c02c8137902e49171ea0626e1bc;p=userspace-rcu.git diff --git a/urcu/futex.h b/urcu/futex.h index 13d2b1a..7f17564 100644 --- a/urcu/futex.h +++ b/urcu/futex.h @@ -57,7 +57,7 @@ extern int compat_futex_async(int32_t *uaddr, int op, int32_t val, #include #include #include -#include +#include static inline int futex(int32_t *uaddr, int op, int32_t val, const struct timespec *timeout, int32_t *uaddr2, int32_t val3) @@ -73,7 +73,16 @@ static inline int futex_noasync(int32_t *uaddr, int op, int32_t val, ret = futex(uaddr, op, val, timeout, uaddr2, val3); if (caa_unlikely(ret < 0 && errno == ENOSYS)) { - return compat_futex_noasync(uaddr, op, val, timeout, + /* + * The fallback on ENOSYS is the async-safe version of + * the compat futex implementation, because the + * async-safe compat implementation allows being used + * concurrently with calls to futex(). Indeed, sys_futex + * FUTEX_WAIT, on some architectures (mips and parisc), + * within a given process, spuriously return ENOSYS due + * to signal restart bugs on some kernel versions. + */ + return compat_futex_async(uaddr, op, val, timeout, uaddr2, val3); } return ret;