]> git.ipfire.org Git - thirdparty/glibc.git/blame - linuxthreads/sysdeps/sparc/sparc32/pspinlock.c
Test for stack alignment.
[thirdparty/glibc.git] / linuxthreads / sysdeps / sparc / sparc32 / pspinlock.c
CommitLineData
0f550417
UD
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
cc7375ce
RM
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
0f550417
UD
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
cc7375ce 13 Lesser General Public License for more details.
0f550417 14
cc7375ce 15 You should have received a copy of the GNU Lesser General Public
0f550417
UD
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>
27ee0a55 22#include "internals.h"
0f550417 23
554eca5c 24/* This implementation is similar to the one used in the Linux kernel. */
0f550417
UD
25int
26__pthread_spin_lock (pthread_spinlock_t *lock)
27{
554eca5c
AJ
28 asm volatile
29 ("1: ldstub [%0], %%g2\n"
30 " orcc %%g2, 0x0, %%g0\n"
31 " bne,a 2f\n"
32 " ldub [%0], %%g2\n"
33 ".subsection 2\n"
34 "2: orcc %%g2, 0x0, %%g0\n"
35 " bne,a 2b\n"
36 " ldub [%0], %%g2\n"
37 " b,a 1b\n"
38 ".previous"
39 : /* no outputs */
40 : "r" (lock)
41 : "g2", "memory", "cc");
42 return 0;
0f550417
UD
43}
44weak_alias (__pthread_spin_lock, pthread_spin_lock)
45
46
47int
48__pthread_spin_trylock (pthread_spinlock_t *lock)
49{
554eca5c
AJ
50 int result;
51 asm volatile
52 ("ldstub [%1], %0"
53 : "=r" (result)
54 : "r" (lock)
55 : "memory");
56 return result == 0 ? 0 : EBUSY;
0f550417
UD
57}
58weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
59
60
61int
62__pthread_spin_unlock (pthread_spinlock_t *lock)
63{
554eca5c
AJ
64 *lock = 0;
65 return 0;
0f550417
UD
66}
67weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
68
69
70int
71__pthread_spin_init (pthread_spinlock_t *lock, int pshared)
72{
73 /* We can ignore the `pshared' parameter. Since we are busy-waiting
74 all processes which can access the memory location `lock' points
75 to can use the spinlock. */
554eca5c 76 *lock = 0;
0f550417
UD
77 return 0;
78}
79weak_alias (__pthread_spin_init, pthread_spin_init)
80
81
82int
83__pthread_spin_destroy (pthread_spinlock_t *lock)
84{
85 /* Nothing to do. */
86 return 0;
87}
88weak_alias (__pthread_spin_destroy, pthread_spin_destroy)