diff options
author | Roland McGrath <roland@hack.frob.com> | 2016-01-20 13:57:14 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2016-01-20 13:57:14 -0800 |
commit | a3140836c82679f85b780e936ae0c0179997952e (patch) | |
tree | a46a76c1f1b83c0657509f2ce2ebcabfba21961d /sysdeps/nacl | |
parent | b274130206cb9fce1d7b026386a910428cbdb45c (diff) | |
download | glibc-a3140836c82679f85b780e936ae0c0179997952e.tar.gz |
NaCl: Fix unused variable errors in lowlevellock-futex.h macros.
Diffstat (limited to 'sysdeps/nacl')
-rw-r--r-- | sysdeps/nacl/lowlevellock-futex.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/nacl/lowlevellock-futex.h b/sysdeps/nacl/lowlevellock-futex.h index 5f7d45950b..5382f685ff 100644 --- a/sysdeps/nacl/lowlevellock-futex.h +++ b/sysdeps/nacl/lowlevellock-futex.h @@ -35,7 +35,8 @@ /* Wait while *FUTEXP == VAL for an lll_futex_wake call on FUTEXP. */ #define lll_futex_wait(futexp, val, private) \ - (- __nacl_irt_futex.futex_wait_abs ((volatile int *) (futexp), val, NULL)) + ((void) (private), \ + - __nacl_irt_futex.futex_wait_abs ((volatile int *) (futexp), val, NULL)) /* Wait until a lll_futex_wake call on FUTEXP, or TIMEOUT elapses. */ #define lll_futex_timed_wait(futexp, val, timeout, private) \ @@ -60,13 +61,15 @@ if (_err == 0) \ _err = __nacl_irt_futex.futex_wait_abs \ ((volatile int *) (futexp), val, _to); \ - -_err; \ + (void) (private); \ + -_err; \ }) /* Wake up up to NR waiters on FUTEXP. */ #define lll_futex_wake(futexp, nr, private) \ ({ \ int _woken; \ + (void) (private); \ - __nacl_irt_futex.futex_wake ((volatile int *) (futexp), nr, &_woken); \ }) |