aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/sysdeps/mips
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2002-01-28 10:49:11 +0000
committerAndreas Jaeger <aj@suse.de>2002-01-28 10:49:11 +0000
commitdde762a2b68f132452eefa75c0e6900e173d5412 (patch)
tree33b17289cbaae9e767f180c2eee55cb1424c1185 /linuxthreads/sysdeps/mips
parent2b94dab63c3977cb7cc2d839d8a797789e0cc632 (diff)
downloadglibc-dde762a2b68f132452eefa75c0e6900e173d5412.tar
glibc-dde762a2b68f132452eefa75c0e6900e173d5412.tar.gz
glibc-dde762a2b68f132452eefa75c0e6900e173d5412.tar.bz2
glibc-dde762a2b68f132452eefa75c0e6900e173d5412.zip
(__pthread_spin_init): Clear *LOCK to 0.
2002-01-28 Andreas Jaeger <aj@suse.de> * sysdeps/mips/pspinlock.c (__pthread_spin_init): Clear *LOCK to 0. Patch by Machida Hiroyuki <machida@sm.sony.co.jp>. * sysdeps/s390/s390-32/pt-machine.h (MEMORY_BARRIER): Define. (CURRENT_STACK_FRAME): Remove duplicate definition. * sysdeps/s390/s390-64/pt-machine.h: Likewise.
Diffstat (limited to 'linuxthreads/sysdeps/mips')
-rw-r--r--linuxthreads/sysdeps/mips/pspinlock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/mips/pspinlock.c b/linuxthreads/sysdeps/mips/pspinlock.c
index ab73d1dd40..8c832ae5f6 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 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2002 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
@@ -92,7 +92,7 @@ __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
/* We can ignore the `pshared' parameter. Since we are busy-waiting
all processes which can access the memory location `lock' points
to can use the spinlock. */
- *lock = 1;
+ *lock = 0;
return 0;
}
weak_alias (__pthread_spin_init, pthread_spin_init)