mirror of git://sourceware.org/git/glibc.git
Update.
* atomic.h (atomic_bit_set): Renamed from atomic_set_bit. Add missing atomic_ prefixes.
This commit is contained in:
parent
e3ec8904db
commit
0289bef9a6
|
|
@ -1,6 +1,7 @@
|
||||||
2003-02-04 Ulrich Drepper <drepper@redhat.com>
|
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
|
* sysdeps/pthread/bits/libc-lock.h (__libc_once): In case no
|
||||||
thread library is available, use correct value to mark initialized
|
thread library is available, use correct value to mark initialized
|
||||||
|
|
|
||||||
|
|
@ -79,8 +79,8 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef atomic_set_bit
|
#ifndef atomic_bit_set
|
||||||
# define atomic_set_bit(mem, bit) \
|
# define atomic_bit_set(mem, bit) \
|
||||||
(void) ({ __typeof (mem) __memp = (mem); \
|
(void) ({ __typeof (mem) __memp = (mem); \
|
||||||
while (1) \
|
while (1) \
|
||||||
{ \
|
{ \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue