Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 5 Feb 2003 07:00:46 +0000 (07:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 5 Feb 2003 07:00:46 +0000 (07:00 +0000)
* atomic.h (atomic_bit_set): Renamed from atomic_set_bit.
Add missing atomic_ prefixes.

nptl/ChangeLog
nptl/atomic.h

index 36e093f..542b102 100644 (file)
@@ -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
index 987424d..fe390dd 100644 (file)
@@ -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)                                                         \
              {                                                               \