OSDN Git Service

4de152be3008e1d977aa404d79e162b4d11f1497
[uclinux-h8/uClibc.git] / libpthread / linuxthreads / sysdeps / sparc / sparc32 / pspinlock.c
1 /* POSIX spinlock implementation.  SPARC32 version.
2    Copyright (C) 2000 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 "internals.h"
22
23 /* This implementation is similar to the one used in the Linux kernel.  */
24 int
25 __pthread_spin_lock (pthread_spinlock_t *lock)
26 {
27   __asm__ __volatile__
28     ("1: ldstub [%0], %%g2\n"
29      "   orcc   %%g2, 0x0, %%g0\n"
30      "   bne,a  2f\n"
31      "   ldub   [%0], %%g2\n"
32      ".subsection 2\n"
33      "2: orcc   %%g2, 0x0, %%g0\n"
34      "   bne,a  2b\n"
35      "   ldub   [%0], %%g2\n"
36      "   b,a    1b\n"
37      ".previous"
38      : /* no outputs */
39      : "r" (lock)
40      : "g2", "memory", "cc");
41   return 0;
42 }
43 weak_alias (__pthread_spin_lock, pthread_spin_lock)
44
45
46 int
47 __pthread_spin_trylock (pthread_spinlock_t *lock)
48 {
49   int result;
50   __asm__ __volatile__
51     ("ldstub [%1], %0"
52      : "=r" (result)
53      : "r" (lock)
54      : "memory");
55   return result == 0 ? 0 : EBUSY;
56 }
57 weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
58
59
60 int
61 __pthread_spin_unlock (pthread_spinlock_t *lock)
62 {
63   *lock = 0;
64   return 0;
65 }
66 weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
67
68
69 int
70 __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
71 {
72   /* We can ignore the `pshared' parameter.  Since we are busy-waiting
73      all processes which can access the memory location `lock' points
74      to can use the spinlock.  */
75   *lock = 0;
76   return 0;
77 }
78 weak_alias (__pthread_spin_init, pthread_spin_init)
79
80
81 int
82 __pthread_spin_destroy (pthread_spinlock_t *lock)
83 {
84   /* Nothing to do.  */
85   return 0;
86 }
87 weak_alias (__pthread_spin_destroy, pthread_spin_destroy)