OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libpthread / 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
17    not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <errno.h>
20 #include <pthread.h>
21 #include <sgidefs.h>
22 #include <sys/tas.h>
23 #include "internals.h"
24
25 /* This implementation is similar to the one used in the Linux kernel.  */
26 int
27 __pthread_spin_lock (pthread_spinlock_t *lock)
28 {
29   unsigned int tmp1, tmp2;
30
31   __asm__ __volatile__
32     ("\t\t\t# spin_lock\n"
33      "1:\n\t"
34      ".set      push\n\t"
35 #if _MIPS_SIM == _ABIO32
36      ".set      mips2\n\t"
37 #endif
38      "ll        %1,%3\n\t"
39      "li        %2,1\n\t"
40      "bnez      %1,1b\n\t"
41      "sc        %2,%0\n\t"
42      ".set      pop\n\t"
43      "beqz      %2,1b"
44      : "=m" (*lock), "=&r" (tmp1), "=&r" (tmp2)
45      : "m" (*lock)
46      : "memory");
47
48   return 0;
49 }
50
51 weak_alias (__pthread_spin_lock, pthread_spin_lock)
52
53
54 int
55 __pthread_spin_trylock (pthread_spinlock_t *lock)
56 {
57   /* To be done.  */
58   return 0;
59 }
60 weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
61
62
63 int
64 __pthread_spin_unlock (pthread_spinlock_t *lock)
65 {
66   __asm__ __volatile__
67     ("\t\t\t# spin_unlock\n\t"
68      "sw        $0,%0"
69      : "=m" (*lock)
70      :
71      : "memory");
72   return 0;
73 }
74 weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
75
76
77 int
78 __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
79 {
80   /* We can ignore the `pshared' parameter.  Since we are busy-waiting
81      all processes which can access the memory location `lock' points
82      to can use the spinlock.  */
83   *lock = 0;
84   return 0;
85 }
86 weak_alias (__pthread_spin_init, pthread_spin_init)
87
88
89 int
90 __pthread_spin_destroy (pthread_spinlock_t *lock)
91 {
92   /* Nothing to do.  */
93   return 0;
94 }
95 weak_alias (__pthread_spin_destroy, pthread_spin_destroy)