mirror of git://sourceware.org/git/glibc.git
2003-03-27 Roland McGrath <roland@redhat.com>
* sysdeps/powerpc/bits/atomic.h [! __powerpc64__] (__arch_atomic_decrement_if_positive_64): Fix bogus definition.
This commit is contained in:
parent
3e60b5f234
commit
448163bae2
|
|
@ -175,7 +175,7 @@ typedef uintmax_t uatomic_max_t;
|
|||
# define __arch_atomic_exchange_and_add_64(mem, value) \
|
||||
({ abort (); (*mem) = (value); })
|
||||
# define __arch_atomic_decrement_if_positive_64(mem) \
|
||||
({ abort (); (*mem) = (value); })
|
||||
({ abort (); (*mem)--; })
|
||||
#endif
|
||||
|
||||
#define __arch_atomic_exchange_32(mem, value) \
|
||||
|
|
|
|||
Loading…
Reference in New Issue