aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/sysdeps/mips/pspinlock.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2003-03-14 04:22:05 +0000
committerAlexandre Oliva <aoliva@redhat.com>2003-03-14 04:22:05 +0000
commit7fb8033c1f844b6ec8bc20267153c31d99714b8f (patch)
treeb8d30dcab011f8b3bd63962be0de64b9f7057489 /linuxthreads/sysdeps/mips/pspinlock.c
parent264befa8c2b8029f614f7671a9b10d489a2e43e1 (diff)
downloadglibc-7fb8033c1f844b6ec8bc20267153c31d99714b8f.tar
glibc-7fb8033c1f844b6ec8bc20267153c31d99714b8f.tar.gz
glibc-7fb8033c1f844b6ec8bc20267153c31d99714b8f.tar.bz2
glibc-7fb8033c1f844b6ec8bc20267153c31d99714b8f.zip
* sysdeps/mips/pspinlock.c (__pthread_spin_lock): Don't .set mips2 on new abi. * sysdeps/mips/pt-machine.h (__compare_and_swap): Likewise. Handle 64-bit longs on n64.
2003-03-14 Alexandre Oliva <aoliva@redhat.com> * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Don't .set mips2 on new abi. * sysdeps/mips/pt-machine.h (__compare_and_swap): Likewise. Handle 64-bit longs on n64.
Diffstat (limited to 'linuxthreads/sysdeps/mips/pspinlock.c')
-rw-r--r--linuxthreads/sysdeps/mips/pspinlock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/mips/pspinlock.c b/linuxthreads/sysdeps/mips/pspinlock.c
index da4b5c19a3..a9fb19f674 100644
--- a/linuxthreads/sysdeps/mips/pspinlock.c
+++ b/linuxthreads/sysdeps/mips/pspinlock.c
@@ -1,5 +1,5 @@
/* POSIX spinlock implementation. MIPS version.
- Copyright (C) 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 2000, 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
@@ -32,7 +32,9 @@ __pthread_spin_lock (pthread_spinlock_t *lock)
("\t\t\t# spin_lock\n"
"1:\n\t"
".set push\n\t"
+#if _MIPS_SIM == _MIPS_SIM_ABI32
".set mips2\n\t"
+#endif
"ll %1,%3\n\t"
"li %2,1\n\t"
"bnez %1,1b\n\t"