(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / linuxthreads / sysdeps / sparc / sparc32 / pspinlock.c
bloba67dbf901e8c437df346a42b22c27715f6836157
1 /* POSIX spinlock implementation. SPARC32 version.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
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. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include "internals.h"
24 /* This implementation is similar to the one used in the Linux kernel. */
25 int
26 __pthread_spin_lock (pthread_spinlock_t *lock)
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;
44 weak_alias (__pthread_spin_lock, pthread_spin_lock)
47 int
48 __pthread_spin_trylock (pthread_spinlock_t *lock)
50 int result;
51 asm volatile
52 ("ldstub [%1], %0"
53 : "=r" (result)
54 : "r" (lock)
55 : "memory");
56 return result == 0 ? 0 : EBUSY;
58 weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
61 int
62 __pthread_spin_unlock (pthread_spinlock_t *lock)
64 *lock = 0;
65 return 0;
67 weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
70 int
71 __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
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. */
76 *lock = 0;
77 return 0;
79 weak_alias (__pthread_spin_init, pthread_spin_init)
82 int
83 __pthread_spin_destroy (pthread_spinlock_t *lock)
85 /* Nothing to do. */
86 return 0;
88 weak_alias (__pthread_spin_destroy, pthread_spin_destroy)