diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-05 07:00:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-05 07:00:46 +0000 |
commit | 0289bef9a684e08661b03803b61524d6dab9ffdc (patch) | |
tree | 8eafa06c5963b029429147f4a41005ea957cb18f | |
parent | e3ec8904db846897ef72ead8490312bfe2bd29d4 (diff) | |
download | glibc-0289bef9a684e08661b03803b61524d6dab9ffdc.tar glibc-0289bef9a684e08661b03803b61524d6dab9ffdc.tar.gz glibc-0289bef9a684e08661b03803b61524d6dab9ffdc.tar.bz2 glibc-0289bef9a684e08661b03803b61524d6dab9ffdc.zip |
Update.
* atomic.h (atomic_bit_set): Renamed from atomic_set_bit.
Add missing atomic_ prefixes.
-rw-r--r-- | nptl/ChangeLog | 3 | ||||
-rw-r--r-- | nptl/atomic.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 36e093fd87..542b102f78 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,6 +1,7 @@ 2003-02-04 Ulrich Drepper <drepper@redhat.com> - * atomic.h: Add missing atomic_ prefixes. + * atomic.h (atomic_bit_set): Renamed from atomic_set_bit. + Add missing atomic_ prefixes. * sysdeps/pthread/bits/libc-lock.h (__libc_once): In case no thread library is available, use correct value to mark initialized 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) \ { \ |