chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / linuxthreads / sysdeps / mips / pspinlock.c
1 /* POSIX spinlock implementation.  MIPS version.
2    Copyright (C) 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public License as
7    published by the Free Software Foundation; either version 2.1 of the
8    License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #include <errno.h>
21 #include <pthread.h>
22 #include <sgidefs.h>
23 #include <sys/tas.h>
24 #include "internals.h"
25
26 #include <sgidefs.h>
27
28 /* This implementation is similar to the one used in the Linux kernel.  */
29 int
30 __pthread_spin_lock (pthread_spinlock_t *lock)
31 {
32   unsigned int tmp1, tmp2;
33
34   asm volatile
35     ("\t\t\t# spin_lock\n"
36      "1:\n\t"
37      ".set      push\n\t"
38 #if _MIPS_SIM == _ABIO32
39      ".set      mips2\n\t"
40 #endif
41      "ll        %1,%3\n\t"
42      "li        %2,1\n\t"
43      "bnez      %1,1b\n\t"
44      "sc        %2,%0\n\t"
45      ".set      pop\n\t"
46      "beqz      %2,1b"
47      : "=m" (*lock), "=&r" (tmp1), "=&r" (tmp2)
48      : "m" (*lock)
49      : "memory");
50
51   return 0;
52 }
53
54 weak_alias (__pthread_spin_lock, pthread_spin_lock)
55
56
57 int
58 __pthread_spin_trylock (pthread_spinlock_t *lock)
59 {
60   /* To be done.  */
61   return 0;
62 }
63 weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
64
65
66 int
67 __pthread_spin_unlock (pthread_spinlock_t *lock)
68 {
69   asm volatile
70     ("\t\t\t# spin_unlock\n\t"
71      "sw        $0,%0"
72      : "=m" (*lock)
73      :
74      : "memory");
75   return 0;
76 }
77 weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
78
79
80 int
81 __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
82 {
83   /* We can ignore the `pshared' parameter.  Since we are busy-waiting
84      all processes which can access the memory location `lock' points
85      to can use the spinlock.  */
86   *lock = 0;
87   return 0;
88 }
89 weak_alias (__pthread_spin_init, pthread_spin_init)
90
91
92 int
93 __pthread_spin_destroy (pthread_spinlock_t *lock)
94 {
95   /* Nothing to do.  */
96   return 0;
97 }
98 weak_alias (__pthread_spin_destroy, pthread_spin_destroy)