X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=compat_futex.c;fp=compat_futex.c;h=3f1d1ef3410a91d4ae432080debcba4c6a17e387;hp=28089cc838e0bccf2cb00768f67dbab967c4c653;hb=6d841bc23fc94345fe76651d73c1a3f821a85aa7;hpb=e0ab43eb922df8fee5f28416d41fa3b2ca4a7a43 diff --git a/compat_futex.c b/compat_futex.c index 28089cc..3f1d1ef 100644 --- a/compat_futex.c +++ b/compat_futex.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -39,8 +40,8 @@ static pthread_cond_t compat_futex_cond = PTHREAD_COND_INITIALIZER; * Waiter will relinquish the CPU until woken up. */ -int compat_futex_noasync(int *uaddr, int op, int val, - const struct timespec *timeout, int *uaddr2, int val3) +int compat_futex_noasync(int32_t *uaddr, int op, int32_t val, + const struct timespec *timeout, int32_t *uaddr2, int32_t val3) { int ret, i, gret = 0; @@ -84,8 +85,8 @@ end: * Waiter will busy-loop trying to read the condition. */ -int compat_futex_async(int *uaddr, int op, int val, - const struct timespec *timeout, int *uaddr2, int val3) +int compat_futex_async(int32_t *uaddr, int op, int32_t val, + const struct timespec *timeout, int32_t *uaddr2, int32_t val3) { int ret, i;