aboutsummaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-05 06:56:56 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-05 06:56:56 +0000
commite3ec8904db846897ef72ead8490312bfe2bd29d4 (patch)
tree1672ee657a5b1afd75038299c7626b07e0801add /nptl
parent6f1cff95e7d5ff6fdfd9edfc46a7abd709842c16 (diff)
downloadglibc-e3ec8904db846897ef72ead8490312bfe2bd29d4.tar
glibc-e3ec8904db846897ef72ead8490312bfe2bd29d4.tar.gz
glibc-e3ec8904db846897ef72ead8490312bfe2bd29d4.tar.bz2
glibc-e3ec8904db846897ef72ead8490312bfe2bd29d4.zip
Update.
* atomic.h: Add missing atomic_ prefixes.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/ChangeLog2
-rw-r--r--nptl/atomic.h12
-rw-r--r--nptl/sysdeps/i386/Makefile18
3 files changed, 27 insertions, 5 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 068d36976a..36e093fd87 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -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.
diff --git a/nptl/atomic.h b/nptl/atomic.h
index 0464705691..987424de11 100644
--- a/nptl/atomic.h
+++ b/nptl/atomic.h
@@ -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
@@ -57,14 +57,15 @@
\
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
diff --git a/nptl/sysdeps/i386/Makefile b/nptl/sysdeps/i386/Makefile
index 81bddf688c..24990a2b7e 100644
--- a/nptl/sysdeps/i386/Makefile
+++ b/nptl/sysdeps/i386/Makefile
@@ -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