diff options
Diffstat (limited to 'nptl/atomic.h')
-rw-r--r-- | nptl/atomic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/atomic.h b/nptl/atomic.h index 987424de11..fe390ddf78 100644 --- a/nptl/atomic.h +++ b/nptl/atomic.h @@ -79,8 +79,8 @@ #endif -#ifndef atomic_set_bit -# define atomic_set_bit(mem, bit) \ +#ifndef atomic_bit_set +# define atomic_bit_set(mem, bit) \ (void) ({ __typeof (mem) __memp = (mem); \ while (1) \ { \ |