Update.
[glibc.git] / linuxthreads / spinlock.h
blob29f030406c422aad8b75ddb704869f3de7e5b1fc
1 /* Linuxthreads - a simple clone()-based implementation of Posix */
2 /* threads for Linux. */
3 /* Copyright (C) 1998 Xavier Leroy (Xavier.Leroy@inria.fr) */
4 /* */
5 /* This program is free software; you can redistribute it and/or */
6 /* modify it under the terms of the GNU Library General Public License */
7 /* as published by the Free Software Foundation; either version 2 */
8 /* of the License, or (at your option) any later version. */
9 /* */
10 /* This program 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 */
13 /* GNU Library General Public License for more details. */
15 #if defined(TEST_FOR_COMPARE_AND_SWAP)
17 extern int __pthread_has_cas;
18 extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval,
19 int * spinlock);
21 static inline int compare_and_swap(long * ptr, long oldval, long newval,
22 int * spinlock)
24 if (__builtin_expect (__pthread_has_cas, 1))
25 return __compare_and_swap(ptr, oldval, newval);
26 else
27 return __pthread_compare_and_swap(ptr, oldval, newval, spinlock);
30 #elif defined(HAS_COMPARE_AND_SWAP)
32 static inline int compare_and_swap(long * ptr, long oldval, long newval,
33 int * spinlock)
35 return __compare_and_swap(ptr, oldval, newval);
38 #else
40 extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval,
41 int * spinlock);
43 static inline int compare_and_swap(long * ptr, long oldval, long newval,
44 int * spinlock)
46 return __pthread_compare_and_swap(ptr, oldval, newval, spinlock);
49 #endif
51 /* Internal locks */
53 extern void internal_function __pthread_lock(struct _pthread_fastlock * lock,
54 pthread_descr self);
55 extern void internal_function __pthread_unlock(struct _pthread_fastlock *lock);
57 static inline void __pthread_init_lock(struct _pthread_fastlock * lock)
59 lock->__status = 0;
60 lock->__spinlock = 0;
63 static inline int __pthread_trylock (struct _pthread_fastlock * lock)
65 long oldstatus;
67 do {
68 oldstatus = lock->__status;
69 if (oldstatus != 0) return EBUSY;
70 } while(! compare_and_swap(&lock->__status, 0, 1, &lock->__spinlock));
71 return 0;
74 #define LOCK_INITIALIZER {0, 0}