diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-06 14:43:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-06 14:43:15 +0000 |
commit | 6600049466b586e3decaf24bd70c06b21382cf98 (patch) | |
tree | 536fc5c8efe78035527223283bcd5a48ac259576 /sysdeps/powerpc/atomicity.h | |
parent | b22fc5f5651706304ac09305ac3ee5bf84516378 (diff) | |
download | glibc-6600049466b586e3decaf24bd70c06b21382cf98.tar.gz glibc-6600049466b586e3decaf24bd70c06b21382cf98.tar.xz glibc-6600049466b586e3decaf24bd70c06b21382cf98.zip |
Update.
1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au> * Makeconfig [!build-static]: Link `static' binaries with libc_pic.a. Still need *FLAGS-.o because we still sometimes build .o files. * db2/Makefile: Don't build libndbm.a if !build-static. 1998-04-16 07:42 Geoff Keating <geoffk@ozemail.com.au> * configure.in: New test for broken gcc on PowerPC. * sysdeps/powerpc/atomicity.h: Use result of test. * linuxthreads/sysdeps/powerpc/pt-machine.h: Use result of test. * math/libm-test.c: Update many of the epsilon to match actual performance. * sysdeps/libm-ieee754/e_exp.c: Reduce the number of branches. * sysdeps/libm-ieee754/e_expf.c: Likewise. * sysdeps/libm-ieee754/s_exp2.c: Likewise. * sysdeps/libm-ieee754/s_exp2f.c: Likewise. * sysdeps/libm-ieee754/e_pow.c: Correct typo. * sysdeps/powerpc/elf/libc-start.c: New file. * sysdeps/powerpc/elf/start.S: New file, use libc-start. * sysdeps/powerpc/elf/start.c: Delete. * sysdeps/unix/sysv/linux/powerpc/Dist: Remove syscall.h * sysdeps/unix/sysv/linux/powerpc/syscall.h: Delete. It was unused. * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Correct previous few patches.
Diffstat (limited to 'sysdeps/powerpc/atomicity.h')
-rw-r--r-- | sysdeps/powerpc/atomicity.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/sysdeps/powerpc/atomicity.h b/sysdeps/powerpc/atomicity.h index dba09658cb..5b56532779 100644 --- a/sysdeps/powerpc/atomicity.h +++ b/sysdeps/powerpc/atomicity.h @@ -1,5 +1,5 @@ /* Low-level functions for atomic operations. PowerPC version. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 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 @@ -22,7 +22,13 @@ #include <inttypes.h> -static inline int +#if BROKEN_PPC_ASM_CR0 +# define __ATOMICITY_INLINE /* nothing */ +#else +# define __ATOMICITY_INLINE inline +#endif + +static __ATOMICITY_INLINE int __attribute__ ((unused)) exchange_and_add (volatile uint32_t *mem, int val) { @@ -36,7 +42,7 @@ exchange_and_add (volatile uint32_t *mem, int val) return result; } -static inline void +static __ATOMICITY_INLINE void __attribute__ ((unused)) atomic_add (volatile uint32_t *mem, int val) { @@ -49,7 +55,7 @@ atomic_add (volatile uint32_t *mem, int val) " : "=&r"(tmp) : "r" (mem), "r"(val) : "cr0"); } -static inline int +static __ATOMICITY_INLINE int __attribute__ ((unused)) compare_and_swap (volatile long int *p, long int oldval, long int newval) { @@ -66,7 +72,7 @@ compare_and_swap (volatile long int *p, long int oldval, long int newval) return result; } -static inline long int +static __ATOMICITY_INLINE long int __attribute__ ((unused)) always_swap (volatile long int *p, long int newval) { @@ -79,7 +85,7 @@ always_swap (volatile long int *p, long int newval) return result; } -static inline int +static __ATOMICITY_INLINE int __attribute__ ((unused)) test_and_set (volatile long int *p, long int oldval, long int newval) { |