From 567152ea54b5f76db543779ae0a148e543fb7587 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 12 Aug 2000 09:29:03 +0000 Subject: * sysdeps/unix/sysv/linux/mips/sys/tas.h (_test_and_set): Add .set mips2 for assembler. * sysdeps/mips/pt-machine.h (testandset): Add .set mips2 for assembler. (__compare_and_swap): Likewise. * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Likewise. --- linuxthreads/sysdeps/mips/pt-machine.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'linuxthreads/sysdeps/mips/pt-machine.h') diff --git a/linuxthreads/sysdeps/mips/pt-machine.h b/linuxthreads/sysdeps/mips/pt-machine.h index 16e264017d..7b4ef61857 100644 --- a/linuxthreads/sysdeps/mips/pt-machine.h +++ b/linuxthreads/sysdeps/mips/pt-machine.h @@ -41,7 +41,8 @@ testandset (int *spinlock) long int ret, temp; __asm__ __volatile__ - ("/* Inline spinlock test & set */\n\t" + (".set mips2\n\t" + "/* Inline spinlock test & set */\n\t" "1:\n\t" "ll %0,%3\n\t" ".set push\n\t" @@ -87,7 +88,8 @@ __compare_and_swap (long int *p, long int oldval, long int newval) long int ret; __asm__ __volatile__ - ("/* Inline compare & swap */\n\t" + (".set mips2\n\t" + "/* Inline compare & swap */\n\t" "1:\n\t" "ll %0,%4\n\t" ".set push\n" -- cgit 1.4.1