Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 5 Feb 2003 06:56:56 +0000 (06:56 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 5 Feb 2003 06:56:56 +0000 (06:56 +0000)
* atomic.h: Add missing atomic_ prefixes.

nptl/ChangeLog
nptl/atomic.h
nptl/sysdeps/i386/Makefile

index 068d369..36e093f 100644 (file)
@@ -1,5 +1,7 @@
 2003-02-04  Ulrich Drepper  <drepper@redhat.com>
 
+       * atomic.h: 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
        once variable.
index 0464705..987424d 100644 (file)
@@ -45,7 +45,7 @@
 
 #ifndef atomic_compare_and_exchange_rel
 # define atomic_compare_and_exchange_rel(mem, oldval, newval) \
-  compare_and_exchange_acq (mem, oldval, newval)
+  atomic_compare_and_exchange_acq (mem, oldval, newval)
 #endif
 
 
                                                                              \
      do                                                                              \
        __oldval = (*__memp);                                                 \
-     while (compare_and_exchange_acq (__memp, __oldval + __value, __oldval)); \
+     while (atomic_compare_and_exchange_acq (__memp, __oldval + __value,      \
+                                            __oldval));                      \
                                                                              \
      __value; })
 #endif
 
 
 #ifndef atomic_add
-# define atomic_add(mem, value) (void) exchange_and_add (mem, value)
+# define atomic_add(mem, value) (void) atomic_exchange_and_add (mem, value)
 #endif
 
 
@@ -85,8 +86,9 @@
              {                                                               \
                __typeof (*mem) __oldval = *__memp;                           \
                                                                              \
-               if (compare_and_exchange_acq (__memp, __oldval | 1 << bit,    \
-                                             __oldval) == 0)                 \
+               if (atomic_compare_and_exchange_acq (__memp,                  \
+                                                    __oldval | 1 << bit,     \
+                                                    __oldval) == 0)          \
                  break;                                                      \
              }})
 #endif
index 81bddf6..24990a2 100644 (file)
@@ -1,3 +1,21 @@
+# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# This file is part of the GNU C Library.
+
+# The GNU C Library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+
+# The GNU C Library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+
+# You should have received a copy of the GNU Lesser General Public
+# License along with the GNU C Library; if not, write to the Free
+# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307 USA.
+
 ifeq ($(subdir),csu)
 gen-as-const-headers += tcb-offsets.sym
 endif