X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Ffutex.h;h=2be3bb6c1dc96e5ee71d932f9a2ae7f5221d901b;hp=98acc12855515e7ca0c5bf9ca42fd3fb988e0f30;hb=b0a841b4ff807dd29fe0cdbfe24900312f0e627b;hpb=bc2433a9853a945a825c244e9ccfe341b73b2ceb diff --git a/urcu/futex.h b/urcu/futex.h index 98acc12..2be3bb6 100644 --- a/urcu/futex.h +++ b/urcu/futex.h @@ -6,6 +6,8 @@ * * Userspace RCU - sys_futex/compat_futex header. * + * Copyright 2011-2012 - Mathieu Desnoyers + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -40,10 +42,13 @@ extern "C" { * * futex_async is signal-handler safe for the wakeup. It uses polling * on the wait-side in compatibility mode. + * + * BEWARE: sys_futex() FUTEX_WAIT may return early if interrupted + * (returns EINTR). */ #ifdef CONFIG_RCU_HAVE_FUTEX -#include +#include #define futex(...) syscall(__NR_futex, __VA_ARGS__) #define futex_noasync(uaddr, op, val, timeout, uaddr2, val3) \ futex(uaddr, op, val, timeout, uaddr2, val3)